From 833d03cc1c1aece43a83a35a5e1aa8751485495a Mon Sep 17 00:00:00 2001 From: Zach Arend Date: Wed, 26 May 2021 20:27:43 +0000 Subject: [PATCH] build: allow node v15 and above for aio 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 --- aio/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/package.json b/aio/package.json index fe760d96736c9..f83b9be5948ff 100644 --- a/aio/package.json +++ b/aio/package.json @@ -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" },