ng6-cli
Version:
Tooling to build applications with Angular 1.5, ES6, and Webpack.
23 lines (14 loc) • 446 B
JavaScript
var BaseClass = require('ouro-base');
var chalk = require('chalk');
module.exports = BaseClass.extend({
init: function (cli) {
this.cli = cli;
//configure command options
this.description = 'This command\'s description has not been set yet.';
this.options = '';
this.order = 200;
},
run: function() {
console.log(chalk.white('The ' + chalk.cyan('run') + ' method is not specified on the command.'));
}
});