ng6-cli
Version:
Tooling to build applications with Angular 1.5, ES6, and Webpack.
21 lines (13 loc) • 383 B
JavaScript
var Command = require('ng6-cli').Command;
module.exports = Command.extend({
init: function() {
this._super.apply(this, arguments);
this.description = 'The <%= name %> description has not yet been defined.';
this.options = '';
this.order = 100;
},
run: function() {
console.log('This command will be available shortly.');
console.log('');
}
});