build: allow node v15 and above for aio (#42367)

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 #42076

PR Close #42367
This commit is contained in:
Zach Arend 2021-05-26 20:27:43 +00:00 committed by Andrew Kushnir
parent 516923e3dc
commit 44027c4e0e
1 changed files with 1 additions and 1 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": "^14.0.0",
"node": ">=14.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},