From 04267f74158c062f3845c90d356f16bd4283defb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=A0=20/=20green?= Date: Fri, 15 Jul 2022 22:23:41 +0900 Subject: [PATCH] fix: mention that Node.js 13/15 support is dropped (fixes #9113) (#9116) --- .eslintrc.cjs | 4 ++-- package.json | 2 +- packages/plugin-vue-jsx/package.json | 2 +- packages/plugin-vue/package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 7411edbf..ba8d46f3 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -137,13 +137,13 @@ module.exports = defineConfig({ 'node/no-unsupported-features/es-builtins': [ 'error', { - version: '>=14.18.0' + version: '^14.18.0 || >=16.0.0' } ], 'node/no-unsupported-features/node-builtins': [ 'error', { - version: '>=14.18.0' + version: '^14.18.0 || >=16.0.0' } ] } diff --git a/package.json b/package.json index ab9cbb59..d601f4f4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vite-monorepo", "private": true, "engines": { - "node": ">=14.18.0" + "node": "^14.18.0 || >=16.0.0" }, "homepage": "https://vitejs.dev/", "keywords": [ diff --git a/packages/plugin-vue-jsx/package.json b/packages/plugin-vue-jsx/package.json index a6ea7028..76484203 100644 --- a/packages/plugin-vue-jsx/package.json +++ b/packages/plugin-vue-jsx/package.json @@ -23,7 +23,7 @@ "prepublishOnly": "npm run build" }, "engines": { - "node": ">=14.18.0" + "node": "^14.18.0 || >=16.0.0" }, "repository": { "type": "git", diff --git a/packages/plugin-vue/package.json b/packages/plugin-vue/package.json index b588b166..53a4b924 100644 --- a/packages/plugin-vue/package.json +++ b/packages/plugin-vue/package.json @@ -23,7 +23,7 @@ "prepublishOnly": "npm run build" }, "engines": { - "node": ">=14.18.0" + "node": "^14.18.0 || >=16.0.0" }, "repository": { "type": "git",