fix(npm): relax engine range for Node 22 / npm 11 (#76486)
This commit is contained in:
parent
ee276a7982
commit
3e0720dd8e
|
|
@ -5,7 +5,7 @@ pins an ``engines.npm`` range, so an npm outside that range aborts every
|
|||
``npm ci`` / ``npm install`` we run inside the checkout::
|
||||
|
||||
npm error code EBADENGINE
|
||||
npm error notsup Required: {"node":">=20.0.0","npm":"<11.10.0 || >=12.0.0"}
|
||||
npm error notsup Required: {"node":">=20.0.0","npm":">=11.17.0"}
|
||||
npm error notsup Actual: {"npm":"10.9.8","node":"v22.23.1"}
|
||||
|
||||
Rather than predicting the failure (which would mean a semver range matcher and
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0",
|
||||
"npm": ">=12.0.0"
|
||||
"npm": ">=11.17.0"
|
||||
}
|
||||
},
|
||||
"apps/bootstrap-installer": {
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0",
|
||||
"npm": ">=12.0.0"
|
||||
"npm": ">=11.17.0"
|
||||
},
|
||||
"allowScripts": {
|
||||
"unicode-animations": false,
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
},
|
||||
"engines": {
|
||||
"node": ">=20.0",
|
||||
"npm": "<11.10.0 || >=12.0.0"
|
||||
"npm": ">=11.17.0"
|
||||
},
|
||||
"allowScripts": {
|
||||
"core-js@3.49.0": true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue