From 33e1a18530963647a598dd1c4173b097b2fd63fe Mon Sep 17 00:00:00 2001 From: Suguru Inatomi Date: Fri, 14 May 2021 22:58:52 +0900 Subject: [PATCH] build(docs-infra): allow only Node.js v14 and above (#42093) The AIO doc-gen uses JavaScript syntax that requires node.js 14.0.0 or above. Closes #42086 PR Close #42093 --- aio/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/package.json b/aio/package.json index 21a5031c55..fe760d9673 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": "^12.20.0 || ^14.0.0", + "node": "^14.0.0", "yarn": ">=1.22.4 <2", "npm": "Please use yarn instead of NPM to install dependencies" },