@yarnpkg/plugin-pnp 3.2.1 → 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.
- package/lib/PnpLinker.js +3 -0
- package/package.json +7 -7
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() {
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/plugin-pnp",
|
|
3
|
-
"version": "3.2.
|
|
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.
|
|
8
|
+
"@yarnpkg/fslib": "^2.7.0",
|
|
9
9
|
"@yarnpkg/plugin-stage": "^3.1.2",
|
|
10
|
-
"@yarnpkg/pnp": "^3.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.
|
|
18
|
-
"@yarnpkg/core": "^3.2.
|
|
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.
|
|
23
|
-
"@yarnpkg/core": "^3.2.
|
|
22
|
+
"@yarnpkg/cli": "^3.2.2",
|
|
23
|
+
"@yarnpkg/core": "^3.2.3"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|