yeoman-generator-bluebird
v0.1.0
Published
Decorates yeoman-generator with Bluebird promises
Downloads
10
Readme
yeoman-generator-bluebird
Decorates functionality from yeoman-generator with Bluebird Promises.
Functions provided
promptAsync(questions)
remoteAsync(url, refresh)
remoteAsync(username, repo, branch, refresh)
Usage
var ygp = require('yeoman-generator-bluebird');
module.exports = generators.Base.extend({
initializing : {
async : function() {
ygp(this);
}
}
});