Files
login-page/backend/node_modules/jake/test/integration/jakelib/required_module.jake.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

11 lines
182 B
JavaScript

let { task, namespace } = require(`${process.env.PROJECT_DIR}/lib/jake`);
namespace('usingRequire', function () {
task('test', () => {
console.log('howdy test');
});
});