Last active
July 2, 2016 01:10
-
-
Save tkambler/e6f0744c4e367b944720 to your computer and use it in GitHub Desktop.
Yeoman - Run Loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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