yeoman-environment 2.3.3 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/environment.js +2 -0
- package/package.json +1 -1
package/lib/environment.js
CHANGED
|
@@ -376,6 +376,8 @@ class Environment extends EventEmitter {
|
|
|
376
376
|
const Generator = this.get(namespace);
|
|
377
377
|
|
|
378
378
|
if (typeof Generator !== 'undefined' && typeof Generator.default === 'function') {
|
|
379
|
+
Generator.default.resolved = Generator.resolved;
|
|
380
|
+
Generator.default.namespace = Generator.namespace;
|
|
379
381
|
return this.instantiate(Generator.default, options);
|
|
380
382
|
}
|
|
381
383
|
|