Skip to content

Commit 4677af8

Browse files
committed
feat(node): drop support for node < 12 || ^13 || ^15
BREAKING CHANGE: node < 12 || ^13 || ^15 are no longer supported.
1 parent 526dbe6 commit 4677af8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

+1-1
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

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"semantic-release": "semantic-release",
2222
"test": "ava"
2323
},
24+
"engines": {
25+
"node": "^12 || ^14 || >=16"
26+
},
2427
"dependencies": {
2528
"tslib": "2.3.0"
2629
},

0 commit comments

Comments
 (0)