Skip to content

Commit 7bf18da

Browse files
committed
feat: Removed support for node 12 and 14
1 parent ecdf097 commit 7bf18da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
node: [12, 14, 16, 18, 20, 22]
24+
node: [16, 18, 20, 22]
2525
os: [ubuntu-latest, macos-latest, windows-latest]
2626
name: Node v${{ matrix.node }} (${{ matrix.os }})
2727
runs-on: ${{ matrix.os }}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"install": "node-gyp-build",
2929
"prepare": "husky install",
3030
"prebuild": "npm run clean",
31-
"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",
32-
"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",
31+
"build": "prebuildify -t 16.9.1 -t 18.7.0 -t 20.5.0 -t 22.1.0 --strip",
32+
"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",
3333
"build:darwin": "npm run build -- --arch x64+arm64",
3434
"build:win32": "npm run build",
3535
"clean": "rimraf build/ coverage/ prebuilds/",

0 commit comments

Comments
 (0)