Skip to content

Commit

Permalink
build: allow node v15 and above for aio
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
  • Loading branch information
zarend committed May 26, 2021
1 parent 9193ea2 commit 833d03c
Showing 1 changed file with 1 addition and 1 deletion.
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": "^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 833d03c

Please sign in to comment.