From e29afbc3733b3b0d51aff0c14d745f01c89a0c66 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 20 May 2021 12:33:51 -0700 Subject: [PATCH] build(compiler): update supported range of node versions to be less restrictive (#42205) Update the supported range of node versions for to be less restrictive, no longer causing yarn or npm to fail engine's checks for future versions of node. While this change will no longer cause yarn or npm to fail these engine's check, this does not reflect a change in the officially supported versions of node for Angular. Angular continues to maintain support for Active LTS and Maintenance LTS versions of node. PR Close #42205 --- packages/compiler/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/compiler/package.json b/packages/compiler/package.json index b4ae5bf258..df8926a99a 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -5,7 +5,7 @@ "author": "angular", "license": "MIT", "engines": { - "node": "^12.14.1 || ^14.0.0" + "node": "^12.14.1 || >=14.0.0" }, "dependencies": { "tslib": "^2.1.0"