From 3365575f42285b791d5e25a5ab18112e11b0ffaa Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Wed, 17 Nov 2021 15:23:04 +0800 Subject: [PATCH] chore!: bump the minimum Node.js version requirement as a precaution As more and more packages are switching to pure ESM, some of the ESM-related features are only supported in Node.js 12.20 or higher, e.g. [subpath patterns](https://nodejs.org/api/packages.html#subpath-patterns). So we need to bump the minimum version requirement to avoid confusions. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4dfc002d..1f629b69 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "template" ], "engines": { - "node": "^12.13.0 || ^14.0.0 || >= 16.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "scripts": { "prepare": "husky install", -- 2.39.5