- Replaced broken .NET backend with Node.js/Express - Restored original website design with purple gradient hero - Updated homepage and shop pages with Bootstrap 5 responsive design - Disabled GitHub remote sync - all code now stored locally only - Created backup scripts and documentation - All changes saved on Ubuntu server at /var/www/SkyArtShop
37 lines
580 B
JavaScript
37 lines
580 B
JavaScript
|
|
task('foo', function () {
|
|
console.log('ran top-level foo');
|
|
});
|
|
|
|
task('bar', function () {
|
|
console.log('ran top-level bar');
|
|
});
|
|
|
|
task('zerb', function () {
|
|
console.log('ran zerb');
|
|
});
|
|
|
|
namespace('zooby', function () {
|
|
task('zerp', function () {});
|
|
|
|
task('derp', ['zerp'], function () {});
|
|
|
|
namespace('frang', function () {
|
|
|
|
namespace('w00t', function () {
|
|
task('bar', function () {
|
|
console.log('ran zooby:frang:w00t:bar');
|
|
});
|
|
});
|
|
|
|
task('asdf', function () {});
|
|
});
|
|
|
|
});
|
|
|
|
namespace('hurr', function () {
|
|
namespace('durr');
|
|
});
|
|
|
|
|