Releases: yeoman/environment
Releases · yeoman/environment
v1.2.7
Only remove lookups
that match full directory name. This fix edge cases like:
my-lib/generators/app
=> my-:app
, instead of my-lib:app
my.lib/generators/app
=> mylib:app
, instead of my.lib:app
test/generators/generators-thing
=> test:-thing
v1.2.6
Fix issue where more than 10 composed generators running at the same time would create event emitter leaks warnings. You can now compose as many generators as you want!
v1.2.5
Fix edge case bug where a generator would be resolved to a json
file rather than a folder of the same name.
v1.2.4
- Safer regex when searching for generators
- Bump mem-fs
v1.2.2
Fix an issue with namespace resolution when you had multiple nested folders with a lookup name.
1.2.1
Some minor performance improvements and made the package a lot smaller.
v1.2.0...v1.2.1
v1.2.0
New Feature
Fixes
- Fix issue some people had with Windows path not being resolved correctly.
Deprecation
- Removed the lifecycle events. They've been broken a while (due to changes in yeoman-generator) and no one complained, they're probably unused so we just deleted them.
v1.1.0
- expose
sharedFs
(a mem-fs instance) on the Environment.
v1.0.2
Adapter#prompt()
is now always a self contained inquirer#prompt()
context.