From 7bf18da030b184cacf042df586b54f0ed61204fe Mon Sep 17 00:00:00 2001 From: Bob Evans Date: Mon, 6 May 2024 12:55:44 -0400 Subject: [PATCH] feat: Removed support for node 12 and 14 --- .github/workflows/test.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 823c7c2..d5376b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - node: [12, 14, 16, 18, 20, 22] + node: [16, 18, 20, 22] os: [ubuntu-latest, macos-latest, windows-latest] name: Node v${{ matrix.node }} (${{ matrix.os }}) runs-on: ${{ matrix.os }} diff --git a/package.json b/package.json index d6dd5ef..8ec8b64 100644 --- a/package.json +++ b/package.json @@ -28,8 +28,8 @@ "install": "node-gyp-build", "prepare": "husky install", "prebuild": "npm run clean", - "build": "prebuildify -t 12.13.0 -t 14.15.0 -t 16.9.1 -t 18.7.0 -t 20.5.0 -t 22.1.0 --strip", - "build:linux": "prebuildify-cross -i centos7-devtoolset7 -i alpine -i linux-arm64 -t 12.13.0 -t 14.15.0 -t 16.9.1 -t 18.7.0 -t 20.5.0 -t 22.1.0 --strip", + "build": "prebuildify -t 16.9.1 -t 18.7.0 -t 20.5.0 -t 22.1.0 --strip", + "build:linux": "prebuildify-cross -i centos7-devtoolset7 -i alpine -i linux-arm64 -t 16.9.1 -t 18.7.0 -t 20.5.0 -t 22.1.0 --strip", "build:darwin": "npm run build -- --arch x64+arm64", "build:win32": "npm run build", "clean": "rimraf build/ coverage/ prebuilds/",