Skip to content

Instantly share code, notes, and snippets.

@tkambler
Last active July 2, 2016 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkambler/e6f0744c4e367b944720 to your computer and use it in GitHub Desktop.
Save tkambler/e6f0744c4e367b944720 to your computer and use it in GitHub Desktop.
Yeoman - Run Loop
var generators = require('yeoman-generator');
module.exports = generators.Base.extend({
'writing': function() {
// ... 2/4
},
'prompting': function() {
// ... 1/4
},
'install': function() {
// ... 3/4
},
'end': function() {
// ... 4/4
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment