From: Haoqun Jiang Date: Thu, 18 Nov 2021 10:38:51 +0000 (+0800) Subject: chore!: drop Node.js 12 support X-Git-Tag: v3.0.0-beta.7~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95200e60eb07ea4eb221b89a852da8e0e00b6c6d;p=thirdparty%2Fvuejs%2Fcreate-vue.git chore!: drop Node.js 12 support 1. Cypress 9.0.0 doesn't play nice with Node.js 12 https://github.com/cypress-io/cypress/issues/18973 2. This package is for creating new projects, so I expect most users are using a more up-to-date version of Node.js --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e2864e6..bf3cd254 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,10 @@ jobs: node-version: - 14 include: - - node-version: 12 - os: ubuntu-latest - node-version: 16 os: ubuntu-latest + - node-version: 17 + os: ubuntu-latest name: Node ${{ matrix.node-version }} on ${{ matrix.os }} steps: - uses: actions/checkout@v1 diff --git a/package.json b/package.json index 1f629b69..828a799d 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "template" ], "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": "^14.13.1 || >=16.0.0" }, "scripts": { "prepare": "husky install",