Files
login-page/backend/node_modules/jake/test/unit/jakefile.js
theis.gaedigk 63d120cc4e feat: add sqlstring and supports-color modules
- Introduced sqlstring module for SQL escape and formatting.
- Added supports-color module to detect terminal color support.
- Created dashboard and login views with Bootstrap styling.
- Implemented user schema in SQL with mock data for testing.
2025-06-20 22:57:32 +02:00

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');
});