@pnpm/exe 12.1.0 → 12.2.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.
@@ -1,15 +1,16 @@
1
1
  {
2
- "lastValidatedTimestamp": 1788011580280,
2
+ "lastValidatedTimestamp": 1788219115260,
3
3
  "projects": {
4
4
  "/home/runner/_work/pnpm/pnpm/pnpm/npm/pnpm/temp-deploy": {
5
5
  "name": "pacquet",
6
- "version": "12.1.0"
6
+ "version": "12.2.0"
7
7
  }
8
8
  },
9
9
  "pnpmfiles": [],
10
10
  "filteredInstall": false,
11
11
  "settings": {
12
12
  "allowBuilds": {
13
+ "@parcel/watcher": false,
13
14
  "core-js": false,
14
15
  "esbuild": true,
15
16
  "fuse-native": true,
@@ -131,7 +132,7 @@
131
132
  "escape-string-regexp": "^5.0.0",
132
133
  "eslint": "^10.9.1",
133
134
  "eslint-plugin-import-x": "^4.17.1",
134
- "eslint-plugin-jest": "^29.16.2",
135
+ "eslint-plugin-jest": "^29.16.5",
135
136
  "eslint-plugin-n": "^18.3.0",
136
137
  "eslint-plugin-promise": "^7.3.0",
137
138
  "eslint-plugin-regexp": "^3.1.1",
@@ -158,8 +159,8 @@
158
159
  "is-subdir": "^2.0.0",
159
160
  "is-windows": "^1.0.2",
160
161
  "isexe": "4.0.0",
161
- "jest": "^30.4.2",
162
- "jest-diff": "^30.4.1",
162
+ "jest": "30.4.2",
163
+ "jest-diff": "30.4.1",
163
164
  "js-yaml": "npm:@zkochan/js-yaml@0.0.11",
164
165
  "json5": "^2.2.3",
165
166
  "keyv": "5.6.0",
@@ -174,7 +175,7 @@
174
175
  "mdast-util-to-string": "^4.0.0",
175
176
  "memoize": "^11.0.0",
176
177
  "micromatch": "^4.0.8",
177
- "msgpackr": "2.0.6",
178
+ "msgpackr": "2.1.0",
178
179
  "nm-prune": "^5.0.0",
179
180
  "node-gyp": "^12.3.0",
180
181
  "normalize-newline": "5.0.0",
@@ -184,7 +185,7 @@
184
185
  "npm-packlist": "10.0.4",
185
186
  "npm-registry-fetch": "^19.0.0",
186
187
  "object-hash": "3.0.0",
187
- "open": "^11.0.1",
188
+ "open": "^11.0.2",
188
189
  "openpgp": "^6.3.1",
189
190
  "p-defer": "^4.0.1",
190
191
  "p-every": "^2.0.0",
@@ -199,8 +200,8 @@
199
200
  "path-temp": "^3.0.0",
200
201
  "pidtree": "^1.0.0",
201
202
  "preferred-pm": "^5.0.0",
202
- "pretty-bytes": "^7.1.1",
203
- "pretty-ms": "^9.3.0",
203
+ "pretty-bytes": "^7.1.2",
204
+ "pretty-ms": "^9.3.1",
204
205
  "promise-share": "^2.0.1",
205
206
  "proxyquire": "^2.1.3",
206
207
  "ps-list": "^9.0.0",
@@ -330,6 +331,7 @@
330
331
  "trustPolicyExclude": [
331
332
  "@pnpm/*",
332
333
  "@yarnpkg/libzip@3.2.2",
334
+ "fastq@1.20.2",
333
335
  "pnpm",
334
336
  "rxjs@7.8.2",
335
337
  "tinyexec@1.2.2",
package/install.js CHANGED
@@ -1,10 +1,11 @@
1
1
  #!/usr/bin/env node
2
2
  // Preinstall for the pnpm v12 wrapper (shared verbatim by `pnpm` and
3
3
  // `@pnpm/exe`): replace the shebang-less placeholder bins with the host's native
4
- // binary so `pnpm` runs directly, no Node startup per call. A placeholder (not a
5
- // Node launcher) is required because the Windows shim is generated from the bin
6
- // file and npm won't re-read package.json after preinstall; the tradeoff is no
7
- // fallback when build scripts are blocked (`--ignore-scripts`, pnpm/Bun default).
4
+ // binary so `pnpm` runs directly, no Node startup per call. The `.exe` suffix is
5
+ // used on every platform because PowerShell cannot execute an extensionless
6
+ // native binary through an explicit path. The placeholder makes the bin target
7
+ // packable before preinstall replaces it; the tradeoff is no fallback when build
8
+ // scripts are blocked (`--ignore-scripts`, pnpm/Bun default).
8
9
  //
9
10
  // `pn`/`pnpx`/`pnx` are committed `#!/bin/sh` scripts on Unix (so only `pnpm` is
10
11
  // relinked); on Windows the native binary is hardlinked onto each and
@@ -63,7 +64,7 @@ function setup () {
63
64
  }
64
65
  rewriteBin(newBin)
65
66
  } else {
66
- placeBinary(nativeBinary, path.join(wrapperDir, 'pnpm'), 0o755)
67
+ placeBinary(nativeBinary, path.join(wrapperDir, 'pnpm.exe'), 0o755)
67
68
  }
68
69
  }
69
70
 
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "./dist/node_modules/node-gyp/gyp/gyp"
10
10
  ]
11
11
  },
12
- "version": "12.1.0",
12
+ "version": "12.2.0",
13
13
  "description": "Fast, disk space efficient package manager",
14
14
  "keywords": [
15
15
  "pnpm",
@@ -25,7 +25,7 @@
25
25
  "directory": "pnpm/npm/pnpm-exe"
26
26
  },
27
27
  "bin": {
28
- "pnpm": "pnpm",
28
+ "pnpm": "pnpm.exe",
29
29
  "pn": "pn",
30
30
  "pnpx": "pnpx",
31
31
  "pnx": "pnx"
@@ -35,7 +35,7 @@
35
35
  "node": ">=18.*"
36
36
  },
37
37
  "files": [
38
- "pnpm",
38
+ "pnpm.exe",
39
39
  "pn",
40
40
  "pnpx",
41
41
  "pnx",
@@ -46,14 +46,14 @@
46
46
  "THIRD-PARTY-NOTICES.md"
47
47
  ],
48
48
  "optionalDependencies": {
49
- "@pnpm/exe.win32-x64": "12.1.0",
50
- "@pnpm/exe.win32-arm64": "12.1.0",
51
- "@pnpm/exe.darwin-x64": "12.1.0",
52
- "@pnpm/exe.darwin-arm64": "12.1.0",
53
- "@pnpm/exe.linux-x64": "12.1.0",
54
- "@pnpm/exe.linux-arm64": "12.1.0",
55
- "@pnpm/exe.linux-x64-musl": "12.1.0",
56
- "@pnpm/exe.linux-arm64-musl": "12.1.0"
49
+ "@pnpm/exe.win32-x64": "12.2.0",
50
+ "@pnpm/exe.win32-arm64": "12.2.0",
51
+ "@pnpm/exe.darwin-x64": "12.2.0",
52
+ "@pnpm/exe.darwin-arm64": "12.2.0",
53
+ "@pnpm/exe.linux-x64": "12.2.0",
54
+ "@pnpm/exe.linux-arm64": "12.2.0",
55
+ "@pnpm/exe.linux-x64-musl": "12.2.0",
56
+ "@pnpm/exe.linux-arm64-musl": "12.2.0"
57
57
  },
58
58
  "scripts": {
59
59
  "preinstall": "node install.js",
File without changes