- 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.
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
let { task, namespace } = require(`${process.env.PROJECT_DIR}/lib/jake`);
|
|
|
|
namespace('usingRequire', function () {
|
|
task('test', () => {
|
|
console.log('howdy test');
|
|
});
|
|
});
|
|
|
|
|
|
|