fix(npm): relax engine range for Node 22 / npm 11 (#76486)

This commit is contained in:
webtecnica 2026-08-01 22:16:54 -03:00 committed by ethernet
parent ee276a7982
commit 3e0720dd8e
4 changed files with 4 additions and 4 deletions

View File

@ -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

2
package-lock.json generated
View File

@ -30,7 +30,7 @@
},
"engines": {
"node": ">=20.0.0",
"npm": ">=12.0.0"
"npm": ">=11.17.0"
}
},
"apps/bootstrap-installer": {

View File

@ -54,7 +54,7 @@
},
"engines": {
"node": ">=20.0.0",
"npm": ">=12.0.0"
"npm": ">=11.17.0"
},
"allowScripts": {
"unicode-animations": false,

View File

@ -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,