@yarnpkg/plugin-pnp 3.2.0 → 4.0.0-rc.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.
Files changed (2) hide show
  1. package/lib/PnpLinker.js +1 -1
  2. package/package.json +11 -10
package/lib/PnpLinker.js CHANGED
@@ -222,6 +222,7 @@ class PnpInstaller {
222
222
  for (const pkg of this.opts.project.storedPackages.values())
223
223
  if (this.opts.project.tryWorkspaceByLocator(pkg))
224
224
  fallbackExclusionList.push({ name: core_1.structUtils.stringifyIdent(pkg), reference: pkg.reference });
225
+ await this.asyncActions.wait();
225
226
  await this.finalizeInstallWithPnp({
226
227
  dependencyTreeRoots,
227
228
  enableTopLevelFallback,
@@ -231,7 +232,6 @@ class PnpInstaller {
231
232
  packageRegistry,
232
233
  shebang,
233
234
  });
234
- await this.asyncActions.wait();
235
235
  return {
236
236
  customData: this.customData,
237
237
  };
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@yarnpkg/plugin-pnp",
3
- "version": "3.2.0",
3
+ "version": "4.0.0-rc.3",
4
4
  "license": "BSD-2-Clause",
5
5
  "main": "./lib/index.js",
6
6
  "dependencies": {
7
7
  "@types/semver": "^7.1.0",
8
- "@yarnpkg/fslib": "^2.6.1",
9
- "@yarnpkg/plugin-stage": "^3.1.1",
10
- "@yarnpkg/pnp": "^3.2.0",
11
- "clipanion": "^3.2.0-rc.4",
8
+ "@yarnpkg/fslib": "^3.0.0-rc.3",
9
+ "@yarnpkg/plugin-stage": "^4.0.0-rc.3",
10
+ "@yarnpkg/pnp": "^4.0.0-rc.3",
11
+ "clipanion": "^3.2.0-rc.10",
12
12
  "micromatch": "^4.0.2",
13
13
  "semver": "^7.1.2",
14
14
  "tslib": "^1.13.0"
15
15
  },
16
16
  "peerDependencies": {
17
- "@yarnpkg/cli": "^3.2.0",
18
- "@yarnpkg/core": "^3.2.0"
17
+ "@yarnpkg/cli": "^4.0.0-rc.3",
18
+ "@yarnpkg/core": "^4.0.0-rc.3"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/micromatch": "^4.0.1",
22
- "@yarnpkg/cli": "^3.2.0",
23
- "@yarnpkg/core": "^3.2.0"
22
+ "@yarnpkg/cli": "^4.0.0-rc.3",
23
+ "@yarnpkg/core": "^4.0.0-rc.3"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
@@ -39,7 +39,8 @@
39
39
  "/lib/**/*"
40
40
  ],
41
41
  "engines": {
42
- "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
42
+ "node": ">=14.15.0"
43
43
  },
44
+ "stableVersion": "3.2.0",
44
45
  "typings": "./lib/index.d.ts"
45
46
  }