generator-itworxhub
Version:
Tool to help the front-end developer at ITWORX HUB Team to save his time by scaffolding the repetitive tasks
21 lines (19 loc) • 563 B
JavaScript
var Generator = require('yeoman-generator'),
yosay = require('yosay'),
_ = require('lodash'),
chalk = require('chalk');
module.exports = class extends Generator {
constructor(args, opts) {
super(args, opts);
}
initializing() {}
prompting() {
this.log(yosay(`Welcome to ${chalk.yellow('ITWORX HUB')} generator!`));
this.log(`You can use 'yo itworxhub:rsc [options] <componentName>' to generate stateless componet`)
}
configuring() {}
writing() {}
conflicts() {}
install() {}
end() {}
};