yeoman-environment 4.0.0-beta.2 → 4.0.0-beta.3
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/dist/environment-base.js +3 -3
- package/package.json +1 -1
package/dist/environment-base.js
CHANGED
|
@@ -590,14 +590,14 @@ export default class EnvironmentBase extends EventEmitter {
|
|
|
590
590
|
* Queue environment's package manager install task.
|
|
591
591
|
*/
|
|
592
592
|
queuePackageManagerInstall() {
|
|
593
|
-
const { adapter, sharedFs: memFs } = this;
|
|
594
|
-
const { skipInstall, nodePackageManager } = this.options;
|
|
595
|
-
const { customInstallTask } = this.composedStore;
|
|
596
593
|
this.queueTask('install', async () => {
|
|
597
594
|
if (this.compatibilityMode === 'v4') {
|
|
598
595
|
debug('Running in generator < 5 compatibility. Package manager install is done by the generator.');
|
|
599
596
|
return;
|
|
600
597
|
}
|
|
598
|
+
const { adapter, sharedFs: memFs } = this;
|
|
599
|
+
const { skipInstall, nodePackageManager } = this.options;
|
|
600
|
+
const { customInstallTask } = this.composedStore;
|
|
601
601
|
await packageManagerInstallTask({
|
|
602
602
|
adapter,
|
|
603
603
|
memFs,
|