@pnpm/exe 11.8.0 → 11.10.0
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/node_modules/.package-map.json +1 -0
- package/dist/node_modules/node-gyp/gyp/gyp +0 -0
- package/dist/node_modules/node-gyp/gyp/gyp_main.py +0 -0
- package/dist/node_modules/picomatch/lib/parse.js +39 -9
- package/dist/node_modules/picomatch/lib/picomatch.js +14 -2
- package/dist/node_modules/picomatch/package.json +3 -2
- package/dist/node_modules/semver/classes/range.js +6 -2
- package/dist/node_modules/semver/package.json +1 -1
- package/dist/node_modules/tar/dist/commonjs/header.js +5 -4
- package/dist/node_modules/tar/dist/commonjs/index.min.js +3 -3
- package/dist/node_modules/tar/dist/commonjs/normalize-windows-path.js +2 -2
- package/dist/node_modules/tar/dist/commonjs/parse.js +39 -4
- package/dist/node_modules/tar/dist/commonjs/pax.js +30 -6
- package/dist/node_modules/tar/dist/commonjs/unpack.js +2 -2
- package/dist/node_modules/tar/dist/esm/header.js +5 -4
- package/dist/node_modules/tar/dist/esm/index.min.js +3 -3
- package/dist/node_modules/tar/dist/esm/normalize-windows-path.js +2 -2
- package/dist/node_modules/tar/dist/esm/parse.js +39 -4
- package/dist/node_modules/tar/dist/esm/pax.js +30 -6
- package/dist/node_modules/tar/dist/esm/unpack.js +2 -2
- package/dist/node_modules/tar/package.json +1 -1
- package/dist/node_modules/undici/lib/dispatcher/client-h1.js +72 -1
- package/dist/node_modules/undici/lib/dispatcher/dispatcher-base.js +1 -0
- package/dist/node_modules/undici/lib/web/cookies/parse.js +16 -23
- package/dist/node_modules/undici/lib/web/websocket/receiver.js +31 -8
- package/dist/node_modules/undici/lib/web/websocket/websocket.js +4 -1
- package/dist/node_modules/undici/package.json +1 -1
- package/dist/pnpm.mjs +30817 -28733
- package/dist/worker.js +278 -277
- package/package.json +13 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/exe",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.10.0",
|
|
4
4
|
"description": "Fast, disk space efficient package manager",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -35,20 +35,20 @@
|
|
|
35
35
|
"detect-libc": "^2.1.2"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@pnpm/linux-
|
|
39
|
-
"@pnpm/
|
|
40
|
-
"@pnpm/
|
|
41
|
-
"@pnpm/linuxstatic-
|
|
42
|
-
"@pnpm/win-
|
|
43
|
-
"@pnpm/
|
|
44
|
-
"@pnpm/win-
|
|
38
|
+
"@pnpm/linux-x64": "11.10.0",
|
|
39
|
+
"@pnpm/linuxstatic-x64": "11.10.0",
|
|
40
|
+
"@pnpm/macos-arm64": "11.10.0",
|
|
41
|
+
"@pnpm/linuxstatic-arm64": "11.10.0",
|
|
42
|
+
"@pnpm/win-arm64": "11.10.0",
|
|
43
|
+
"@pnpm/linux-arm64": "11.10.0",
|
|
44
|
+
"@pnpm/win-x64": "11.10.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@jest/globals": "30.4.1",
|
|
48
48
|
"@zkochan/cmd-shim": "^9.0.6",
|
|
49
49
|
"execa": "npm:safe-execa@0.3.0",
|
|
50
|
-
"@pnpm/exe": "11.
|
|
51
|
-
"@pnpm/jest-config": "1100.0.
|
|
50
|
+
"@pnpm/exe": "11.10.0",
|
|
51
|
+
"@pnpm/jest-config": "1100.0.19"
|
|
52
52
|
},
|
|
53
53
|
"jest": {
|
|
54
54
|
"preset": "@pnpm/jest-config"
|
|
@@ -59,7 +59,9 @@
|
|
|
59
59
|
"executableFiles": [
|
|
60
60
|
"./dist/node-gyp-bin/node-gyp",
|
|
61
61
|
"./dist/node-gyp-bin/node-gyp.cmd",
|
|
62
|
-
"./dist/node_modules/node-gyp/bin/node-gyp.js"
|
|
62
|
+
"./dist/node_modules/node-gyp/bin/node-gyp.js",
|
|
63
|
+
"./dist/node_modules/node-gyp/gyp/gyp_main.py",
|
|
64
|
+
"./dist/node_modules/node-gyp/gyp/gyp"
|
|
63
65
|
]
|
|
64
66
|
},
|
|
65
67
|
"scripts": {
|