Skip to content

Commit

Permalink
build: update node version requirements (#41822)
Browse files Browse the repository at this point in the history
Update the node version requirements to only include the LTS versions supported, rather
than accidently including the active versions.

PR Close #41822
  • Loading branch information
josephperrott authored and thePunderWoman committed Apr 26, 2021
1 parent 09abee3 commit 2f678fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aio/package.json
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion aio/tools/examples/shared/package.json
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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"
},
Expand Down

0 comments on commit 2f678fc

Please sign in to comment.