Skip to content

Commit

Permalink
build: allow node v15 and above for aio (angular#42367)
Browse files Browse the repository at this point in the history
Changes the engines rule in aio to accept any node version greater than
or equal to v14. This allows node v15 to work with aio.

addresses angular#42076

PR Close angular#42367
  • Loading branch information
zarend authored and AndrewKushnir committed May 26, 2021
1 parent 516923e commit 44027c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
},
"//engines-comment": "Keep this in sync with /package.json and /aio/tools/examples/shared/package.json",
"engines": {
"node": "^14.0.0",
"node": ">=14.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
Expand Down

0 comments on commit 44027c4

Please sign in to comment.