@yarnpkg/cli 4.0.0-rc.46 → 4.0.0-rc.48
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/main.js +2 -2
- package/package.json +34 -34
package/lib/main.js
CHANGED
|
@@ -52,10 +52,10 @@ async function main({ binaryVersion, pluginConfiguration }) {
|
|
|
52
52
|
}
|
|
53
53
|
async function exec(cli) {
|
|
54
54
|
// Non-exhaustive known requirements:
|
|
55
|
-
// -
|
|
55
|
+
// - 18.12 is the first LTS release
|
|
56
56
|
var _a, _b, _c, _d, _e;
|
|
57
57
|
const version = process.versions.node;
|
|
58
|
-
const range = `>=
|
|
58
|
+
const range = `>=18.12.0`;
|
|
59
59
|
// YARN_IGNORE_NODE is special because this code needs to execute as early as possible.
|
|
60
60
|
// It's not a regular core setting because Configuration.find may use functions not available
|
|
61
61
|
// on older Node versions.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/cli",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
4
|
-
"stableVersion": "3.6.
|
|
3
|
+
"version": "4.0.0-rc.48",
|
|
4
|
+
"stableVersion": "3.6.1",
|
|
5
5
|
"license": "BSD-2-Clause",
|
|
6
6
|
"main": "./lib/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -9,34 +9,34 @@
|
|
|
9
9
|
"./package.json": "./package.json"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@yarnpkg/core": "^4.0.0-rc.
|
|
13
|
-
"@yarnpkg/fslib": "^3.0.0-rc.
|
|
14
|
-
"@yarnpkg/libzip": "^3.0.0-rc.
|
|
15
|
-
"@yarnpkg/parsers": "^3.0.0-rc.
|
|
16
|
-
"@yarnpkg/plugin-compat": "^4.0.0-rc.
|
|
17
|
-
"@yarnpkg/plugin-constraints": "^4.0.0-rc.
|
|
18
|
-
"@yarnpkg/plugin-dlx": "^4.0.0-rc.
|
|
19
|
-
"@yarnpkg/plugin-essentials": "^4.0.0-rc.
|
|
20
|
-
"@yarnpkg/plugin-exec": "^3.0.0-rc.
|
|
21
|
-
"@yarnpkg/plugin-file": "^3.0.0-rc.
|
|
22
|
-
"@yarnpkg/plugin-git": "^3.0.0-rc.
|
|
23
|
-
"@yarnpkg/plugin-github": "^3.0.0-rc.
|
|
24
|
-
"@yarnpkg/plugin-http": "^3.0.0-rc.
|
|
25
|
-
"@yarnpkg/plugin-init": "^4.0.0-rc.
|
|
26
|
-
"@yarnpkg/plugin-interactive-tools": "^4.0.0-rc.
|
|
27
|
-
"@yarnpkg/plugin-link": "^3.0.0-rc.
|
|
28
|
-
"@yarnpkg/plugin-nm": "^4.0.0-rc.
|
|
29
|
-
"@yarnpkg/plugin-npm": "^3.0.0-rc.
|
|
30
|
-
"@yarnpkg/plugin-npm-cli": "^4.0.0-rc.
|
|
31
|
-
"@yarnpkg/plugin-pack": "^4.0.0-rc.
|
|
32
|
-
"@yarnpkg/plugin-patch": "^4.0.0-rc.
|
|
33
|
-
"@yarnpkg/plugin-pnp": "^4.0.0-rc.
|
|
34
|
-
"@yarnpkg/plugin-pnpm": "^2.0.0-rc.
|
|
35
|
-
"@yarnpkg/plugin-stage": "^4.0.0-rc.
|
|
36
|
-
"@yarnpkg/plugin-typescript": "^4.0.0-rc.
|
|
37
|
-
"@yarnpkg/plugin-version": "^4.0.0-rc.
|
|
38
|
-
"@yarnpkg/plugin-workspace-tools": "^4.0.0-rc.
|
|
39
|
-
"@yarnpkg/shell": "^4.0.0-rc.
|
|
12
|
+
"@yarnpkg/core": "^4.0.0-rc.48",
|
|
13
|
+
"@yarnpkg/fslib": "^3.0.0-rc.48",
|
|
14
|
+
"@yarnpkg/libzip": "^3.0.0-rc.48",
|
|
15
|
+
"@yarnpkg/parsers": "^3.0.0-rc.48",
|
|
16
|
+
"@yarnpkg/plugin-compat": "^4.0.0-rc.48",
|
|
17
|
+
"@yarnpkg/plugin-constraints": "^4.0.0-rc.48",
|
|
18
|
+
"@yarnpkg/plugin-dlx": "^4.0.0-rc.48",
|
|
19
|
+
"@yarnpkg/plugin-essentials": "^4.0.0-rc.48",
|
|
20
|
+
"@yarnpkg/plugin-exec": "^3.0.0-rc.48",
|
|
21
|
+
"@yarnpkg/plugin-file": "^3.0.0-rc.48",
|
|
22
|
+
"@yarnpkg/plugin-git": "^3.0.0-rc.48",
|
|
23
|
+
"@yarnpkg/plugin-github": "^3.0.0-rc.48",
|
|
24
|
+
"@yarnpkg/plugin-http": "^3.0.0-rc.48",
|
|
25
|
+
"@yarnpkg/plugin-init": "^4.0.0-rc.48",
|
|
26
|
+
"@yarnpkg/plugin-interactive-tools": "^4.0.0-rc.48",
|
|
27
|
+
"@yarnpkg/plugin-link": "^3.0.0-rc.48",
|
|
28
|
+
"@yarnpkg/plugin-nm": "^4.0.0-rc.48",
|
|
29
|
+
"@yarnpkg/plugin-npm": "^3.0.0-rc.48",
|
|
30
|
+
"@yarnpkg/plugin-npm-cli": "^4.0.0-rc.48",
|
|
31
|
+
"@yarnpkg/plugin-pack": "^4.0.0-rc.48",
|
|
32
|
+
"@yarnpkg/plugin-patch": "^4.0.0-rc.48",
|
|
33
|
+
"@yarnpkg/plugin-pnp": "^4.0.0-rc.48",
|
|
34
|
+
"@yarnpkg/plugin-pnpm": "^2.0.0-rc.48",
|
|
35
|
+
"@yarnpkg/plugin-stage": "^4.0.0-rc.48",
|
|
36
|
+
"@yarnpkg/plugin-typescript": "^4.0.0-rc.48",
|
|
37
|
+
"@yarnpkg/plugin-version": "^4.0.0-rc.48",
|
|
38
|
+
"@yarnpkg/plugin-workspace-tools": "^4.0.0-rc.48",
|
|
39
|
+
"@yarnpkg/shell": "^4.0.0-rc.48",
|
|
40
40
|
"ci-info": "^3.2.0",
|
|
41
41
|
"clipanion": "^3.2.1",
|
|
42
42
|
"semver": "^7.1.2",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/semver": "^7.1.0",
|
|
48
|
-
"@yarnpkg/builder": "^4.0.0-rc.
|
|
48
|
+
"@yarnpkg/builder": "^4.0.0-rc.48",
|
|
49
49
|
"@yarnpkg/monorepo": "^0.0.0",
|
|
50
|
-
"@yarnpkg/pnpify": "^4.0.0-rc.
|
|
50
|
+
"@yarnpkg/pnpify": "^4.0.0-rc.48",
|
|
51
51
|
"micromatch": "^4.0.2"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@yarnpkg/core": "^4.0.0-rc.
|
|
54
|
+
"@yarnpkg/core": "^4.0.0-rc.48"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"postpack": "rm -rf lib",
|
|
@@ -109,6 +109,6 @@
|
|
|
109
109
|
"directory": "packages/yarnpkg-cli"
|
|
110
110
|
},
|
|
111
111
|
"engines": {
|
|
112
|
-
"node": ">=
|
|
112
|
+
"node": ">=18.12.0"
|
|
113
113
|
}
|
|
114
114
|
}
|