Skip to content

Commit 23ce41c

Browse files
committed
feat(node): drop support for node < 12 || ^13 || ^15
BREAKING CHANGE: node < 12 || ^13 || ^15 are no longer supported.
1 parent b57012a commit 23ce41c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [ 10.x, 12.x, 14.x, 16.x ]
14+
node-version: [ 12.x, 14.x, 16.x ]
1515
steps:
1616
- name: Find yarn cache
1717
id: find-yarn-cache

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"test": "tslint --project . && ava"
2121
},
2222
"sideEffects": false,
23+
"engines": {
24+
"node": "^12 || ^14 || >=16"
25+
},
2326
"dependencies": {
2427
"@softwareventures/array": "^0.31.0 || ^0.33.0 || ^2.0.0 || ^3.0.0",
2528
"@types/imul": "^1.0.0",

0 commit comments

Comments
 (0)