From b7987dced35a1a9d1300714faea48a90ed5229ef Mon Sep 17 00:00:00 2001 From: Gareth Hancock <64541249+GazHank@users.noreply.github.com> Date: Fri, 21 Jul 2023 12:07:52 +0100 Subject: [PATCH] BREAKING CHANGE: drop support for node v14 (#127) --- .github/workflows/test.yml | 2 +- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bccd5aff..951b859a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.config.os }} strategy: matrix: - node-version: [14.x, 16.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x] config: # arch isn't used and we have no way to use it currently - { os: macos-latest, arch: x64 } diff --git a/package-lock.json b/package-lock.json index 3fec4905..1c309be6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -44,7 +44,7 @@ "typescript": "5.1.6" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" }, "funding": { "url": "https://opencollective.com/serialport/donate" diff --git a/package.json b/package.json index 77a2cad0..b9f2d51b 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "typescript": "5.1.6" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" }, "scripts": { "build": "rm -rf dist && tsc -p tsconfig-build.json",