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:
parent
516923e3dc
commit
44027c4e0e
|
@ -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"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue