From: Haoqun Jiang Date: Wed, 17 Nov 2021 07:23:04 +0000 (+0800) Subject: chore!: bump the minimum Node.js version requirement as a precaution X-Git-Tag: v3.0.0-beta.7~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3365575f42285b791d5e25a5ab18112e11b0ffaa;p=thirdparty%2Fvuejs%2Fcreate-vue.git 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. --- 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",