Skip to content

Commit 233118b

Browse files
committedFeb 26, 2021
feat: drop support for node < 10
BREAKING CHANGE: drop support for Node < 10
1 parent 04ebb3d commit 233118b

File tree

3 files changed

+15167
-59
lines changed

3 files changed

+15167
-59
lines changed
 

‎.github/workflows/ci.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ jobs:
1515
strategy:
1616
matrix:
1717
node_version:
18-
- 8 # to be removed 2020-01
19-
- 10 # to be removed 2021-01
18+
- 10 # to be removed 2021-05
19+
- 12 # to be removed 2022-05
20+
- 14 # to be removed 2023-05
2021
- x.x.x # safety net; don't remove
2122
steps:
2223
- uses: actions/checkout@v1
2324
- uses: actions/setup-node@v1
2425
with:
2526
node-version: ${{ matrix.node_version }}
26-
- run: npm i -g npm@6 && npm ci
27+
- run: npm ci
2728
- run: npm test
2829
- uses: coverallsapp/github-action@v1.0.1
2930
with:
@@ -37,9 +38,9 @@ jobs:
3738
- uses: actions/checkout@v1
3839
- uses: actions/setup-node@v1
3940
with:
40-
node-version: 12
41+
node-version: 14
4142
registry-url: https://registry.npmjs.org/
42-
- run: npm i -g npm@6 && npm ci
43+
- run: npm ci
4344
- run: npm run release
4445
if: ${{ github.event_name == 'push' }}
4546
env:

‎package-lock.json

+15,160-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"typescript": "^3.0.1"
7979
},
8080
"engines": {
81-
"node": ">=4"
81+
"node": ">=10"
8282
}
8383
}

0 commit comments

Comments
 (0)
Please sign in to comment.