pnpm 7.2.0 → 7.2.1
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/bin/pnpm.cjs +2 -2
- package/dist/node_modules/.modules.yaml +2 -2
- package/dist/pnpm.cjs +764 -423
- package/dist/pnpx.cjs +763 -422
- package/package.json +19 -19
package/bin/pnpm.cjs
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
const [major, minor] = process.version.slice(1).split('.')
|
|
3
3
|
const COMPATIBILITY_PAGE = `Visit https://r.pnpm.io/comp to see the list of past pnpm versions with respective Node.js version support.`
|
|
4
4
|
|
|
5
|
-
if (major < 14 || major == 14 && minor <
|
|
6
|
-
console.log(`ERROR: This version of pnpm requires at least Node.js v14.
|
|
5
|
+
if (major < 14 || major == 14 && minor < 6) {
|
|
6
|
+
console.log(`ERROR: This version of pnpm requires at least Node.js v14.6
|
|
7
7
|
The current version of Node.js is ${process.version}
|
|
8
8
|
${COMPATIBILITY_PAGE}`)
|
|
9
9
|
process.exit(1)
|
|
@@ -7,11 +7,11 @@ included:
|
|
|
7
7
|
injectedDeps: {}
|
|
8
8
|
layoutVersion: 5
|
|
9
9
|
nodeLinker: hoisted
|
|
10
|
-
packageManager: pnpm@7.
|
|
10
|
+
packageManager: pnpm@7.2.0
|
|
11
11
|
pendingBuilds:
|
|
12
12
|
- /node-gyp/8.4.1
|
|
13
13
|
- /encoding/0.1.13
|
|
14
|
-
prunedAt:
|
|
14
|
+
prunedAt: Sat, 11 Jun 2022 02:09:47 GMT
|
|
15
15
|
publicHoistPattern:
|
|
16
16
|
- '*eslint*'
|
|
17
17
|
- '*prettier*'
|