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.
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeoman-environment",
3
- "version": "4.0.0-beta.2",
3
+ "version": "4.0.0-beta.3",
4
4
  "description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
5
5
  "keywords": [
6
6
  "development",