generator-summon
Version:
Set of small and composable generators
30 lines (25 loc) • 684 B
JavaScript
;
var Easily = require('yeoman-easily').Easily;
var chalk = require('chalk');
module.exports = Easily.createGenerator({
prompting: function () {
return this.easily
.greet('Welcome to the shining ' + chalk.red('generator-summon') + ' generator!')
.confirmBeforeStart('Would you like to use express?')
.prompt();
},
writing: function () {
if (this.easily.checkForConfirmation()) {
this.easily
.extendJSONWithTemplate(
'__package.json',
'package.json',
this.props
)
.copy('server.js');
}
},
install: function () {
this.npmInstall('express', {saveDev: true});
}
});