From cfd2d07ef5eeaac7187c75e31718c2d73af596da Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Fri, 11 Aug 2023 16:09:49 -0700 Subject: [PATCH] fix: drop node14 support BREAKING CHANGE: support for node 14 has been removed --- .github/workflows/ci-release.yml | 2 -- .github/workflows/ci.yml | 2 -- package.json | 10 ++++++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 88e7905..4349cad 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -117,8 +117,6 @@ jobs: os: windows-latest shell: cmd node-version: - - 14.17.0 - - 14.x - 16.13.0 - 16.x - 18.0.0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b8d4a8..d9fadf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,8 +59,6 @@ jobs: os: windows-latest shell: cmd node-version: - - 14.17.0 - - 14.x - 16.13.0 - 16.x - 18.0.0 diff --git a/package.json b/package.json index 5f4b6fa..901d740 100644 --- a/package.json +++ b/package.json @@ -41,10 +41,16 @@ ] }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.18.0" + "version": "4.18.0", + "ciVersions": [ + "16.13.0", + "16.x", + "18.0.0", + "18.x" + ] } }