Skip to content

Commit d0fc42d

Browse files
authored
Drop support for node v10, v11, v13, and v15 (#104)
1 parent 90e69d4 commit d0fc42d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/NodeCI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
node-version: [12.x, 14.x, 16.x]
25+
node-version: [12.x, 14.x, 16.x, 17.x]
2626
steps:
2727
- uses: actions/checkout@v2
2828
- name: Use Node.js ${{ matrix.node-version }}
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
strategy:
5858
matrix:
59-
node-version: [13.x, 14.x]
59+
node-version: [14.x]
6060
steps:
6161
- uses: actions/checkout@v2
6262
- name: Use Node.js ${{ matrix.node-version }}

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"files": [
77
"lib"
88
],
9+
"engines": {
10+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
11+
},
912
"scripts": {
1013
"prebuild": "npm run -s clean",
1114
"build": "tsc --project ./tsconfig.build.json",

0 commit comments

Comments
 (0)