Releases: yeoman/generator
Releases · yeoman/generator
v0.24.0
v0.23.4
v0.21.2
v0.23.3
v0.23.2
v0.23.1
Fix a regression we introduced in the [email protected]
series where some errors would simply get ignored. This shouldn't have impacted any generator used through yo
, but it might have swallowed errors happening during tests. These errors are now correctly surfaced.
v0.23.0
Base#prompt()
functions now returns a promise instead of taking a callback parameter. That'll make it easier to use inside asynchronous tasks.
prompting: function () {
return this.prompt(questions).then(function (answers) {
this.answers = answers;
}.bind(this));
}
This feature might requires a recent version of yo
to work (npm -g update yo
).