generator-marionette-bootstrap
Version:
Yeoman Generator with Backbone, Marionette, Twitter Bootstrap and Gulp
37 lines (31 loc) • 904 B
JavaScript
var yeoman = require('yeoman-generator');
var chalk = require('chalk');
var yosay = require('yosay');
module.exports = yeoman.Base.extend({
prompting: function () {
// Have Yeoman greet the user.
this.log(yosay(
'Welcome to the terrific ' + chalk.red('generator-marionette-bootstrap') + ' generator!'
));
var prompts = [{
type: 'confirm',
name: 'someAnswer',
message: 'Would you like to enable this option?',
default: true
}];
return this.prompt(prompts).then(function (props) {
// To access props later use this.props.someAnswer;
this.props = props;
}.bind(this));
},
writing: function () {
this.fs.copy(
this.templatePath('dummyfile.txt'),
this.destinationPath('dummyfile.txt')
);
},
install: function () {
this.installDependencies();
}
});
;