Releases: yeoman/generator
Releases · yeoman/generator
v5.9.0
v6.0.0-beta.4
- switch to @yeoman/[email protected] 6acc271
v6.0.0-beta.3
- allow @yeoman/[email protected] c31b211
v6.0.0-beta.2
- bump @yeoman-types to v0.3.0 16e3756
v6.0.0-beta.1
- fix: readd options to queueTransformStream 33cbbe5
v6.0.0-beta.0
The yeoman-generator
package now export a native ESM module. (Learn more about ESM)
- Drop node 14 support.
- Uses new
@yeoman/types
for environment/generator interoperability. Conflicts with@types/yeoman-*
types. - Move skipParseOptions and customPriorities to features c12806a
- Drop deprecated install (and not included by default) action 1a856b1
Install action was not scalable. run-async
is not provided anymore:
Convert to Promises or userun-async
v3:
import runAsync from 'run-async';
class Gen {
asyncTaskWithCallback: runAsync(function() {
const done = this.async();
asyncMethod(done);
}),
}
- Composing with esm generators is async:
const generator = await this.composeWith('get');
v6.0.0-alpha.0
- convert to typescript/esm