UNPKG

generator-summon

Version:

Set of small and composable generators

28 lines (22 loc) 624 B
'use strict'; var Easily = require('yeoman-easily').Easily; var chalk = require('chalk'); module.exports = Easily.createGenerator({ prompting: function () { return this.easily .greet('Welcome to the striking ' + chalk.red('generator-summon') + ' generator!') .confirmBeforeStart('Would you like to use github pages?') .prompt(); }, writing: function () { if (this.easily.checkForConfirmation()) { this.easily.extendJSONWithTemplate( '__package.json', 'package.json' ); } }, install: function () { this.installDependencies({bower: false}); } });