@yarnpkg/plugin-pnp 3.2.0-rc.6 → 3.2.2

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 +4 -1
  2. package/package.json +8 -9
package/lib/PnpLinker.js CHANGED
@@ -18,6 +18,9 @@ const FORCED_UNPLUG_PACKAGES = new Set([
18
18
  core_1.structUtils.makeIdent(null, `node-addon-api`).identHash,
19
19
  // Those ones contain native builds (*.node), and Node loads them through dlopen
20
20
  core_1.structUtils.makeIdent(null, `fsevents`).identHash,
21
+ // Contains native binaries
22
+ core_1.structUtils.makeIdent(null, `open`).identHash,
23
+ core_1.structUtils.makeIdent(null, `opn`).identHash,
21
24
  ]);
22
25
  class PnpLinker {
23
26
  constructor() {
@@ -222,6 +225,7 @@ class PnpInstaller {
222
225
  for (const pkg of this.opts.project.storedPackages.values())
223
226
  if (this.opts.project.tryWorkspaceByLocator(pkg))
224
227
  fallbackExclusionList.push({ name: core_1.structUtils.stringifyIdent(pkg), reference: pkg.reference });
228
+ await this.asyncActions.wait();
225
229
  await this.finalizeInstallWithPnp({
226
230
  dependencyTreeRoots,
227
231
  enableTopLevelFallback,
@@ -231,7 +235,6 @@ class PnpInstaller {
231
235
  packageRegistry,
232
236
  shebang,
233
237
  });
234
- await this.asyncActions.wait();
235
238
  return {
236
239
  customData: this.customData,
237
240
  };
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@yarnpkg/plugin-pnp",
3
- "version": "3.2.0-rc.6",
3
+ "version": "3.2.2",
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-rc.11",
9
- "@yarnpkg/plugin-stage": "^3.1.1",
10
- "@yarnpkg/pnp": "^3.1.1-rc.16",
8
+ "@yarnpkg/fslib": "^2.7.0",
9
+ "@yarnpkg/plugin-stage": "^3.1.2",
10
+ "@yarnpkg/pnp": "^3.2.2",
11
11
  "clipanion": "^3.2.0-rc.4",
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-rc.16",
18
- "@yarnpkg/core": "^3.2.0-rc.16"
17
+ "@yarnpkg/cli": "^3.2.2",
18
+ "@yarnpkg/core": "^3.2.3"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/micromatch": "^4.0.1",
22
- "@yarnpkg/cli": "^3.2.0-rc.16",
23
- "@yarnpkg/core": "^3.2.0-rc.16"
22
+ "@yarnpkg/cli": "^3.2.2",
23
+ "@yarnpkg/core": "^3.2.3"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
@@ -41,6 +41,5 @@
41
41
  "engines": {
42
42
  "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
43
43
  },
44
- "stableVersion": "3.1.1",
45
44
  "typings": "./lib/index.d.ts"
46
45
  }