From 4c0be5ea200fd48994fb0a39f19d451fde8a9b30 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Tue, 15 Aug 2023 14:01:02 -0700 Subject: [PATCH] fix: drop node 16.13.x support BREAKING CHANGE: support for node <=16.13 has been removed --- .github/workflows/ci-release.yml | 2 +- .github/workflows/ci.yml | 2 +- package.json | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 4349cad7..380de5ee 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -117,7 +117,7 @@ jobs: os: windows-latest shell: cmd node-version: - - 16.13.0 + - 16.14.0 - 16.x - 18.0.0 - 18.x diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9fadf54..06966af6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: os: windows-latest shell: cmd node-version: - - 16.13.0 + - 16.14.0 - 16.x - 18.0.0 - 18.x diff --git a/package.json b/package.json index 97bcbf6b..1817ca4f 100644 --- a/package.json +++ b/package.json @@ -57,17 +57,17 @@ ] }, "engines": { - "node": "^16.13.0 || >=18.0.0" + "node": "^16.14.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", + "publish": "true", "ciVersions": [ - "16.13.0", + "16.14.0", "16.x", "18.0.0", "18.x" - ], - "version": "4.18.0", - "publish": "true" + ] } }