build: update node version requirements (#41822)

Update the node version requirements to only include the LTS versions supported, rather
than accidently including the active versions.

PR Close #41822
This commit is contained in:
Joey Perrott 2021-04-26 11:42:59 -07:00 committed by Jessica Janiuk
parent 09abee359d
commit 2f678fcedb
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@
},
"//engines-comment": "Keep this in sync with /package.json and /aio/tools/examples/shared/package.json",
"engines": {
"node": ">=12.14.1 <16.0.0",
"node": "^12.14.1 || ^14.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},

View File

@ -12,7 +12,7 @@
},
"//engines-comment": "Keep this in sync with /package.json and /aio/package.json",
"engines": {
"node": ">=12.14.1 <16.0.0",
"node": "^12.14.1 || ^14.0.0",
"yarn": ">=1.21.1 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},

View File

@ -8,7 +8,7 @@
"license": "MIT",
"//engines-comment": "Keep this in sync with /aio/package.json and /aio/tools/examples/shared/package.json",
"engines": {
"node": ">=12.14.1 <16.0.0",
"node": "^12.14.1 || ^14.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},