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 iRealNirmal committed Jun 4, 2021
1 parent fe1d6f6 commit df7b79d
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 df7b79d

Please sign in to comment.