Skip to content

Commit d457668

Browse files
committed
feat(node): drop support for node 12, 17
BREAKING CHANGE: node versions 12, 17 are no longer supported.
1 parent 75365bf commit d457668

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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: [12.x, 14.x, 16.x]
14+
node-version: [14.x, 16.x, 18.x]
1515
steps:
1616
- name: Find yarn cache
1717
id: find-yarn-cache

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"types": "index.d.ts",
2929
"engines": {
30-
"node": "^12 || ^14 || >=16"
30+
"node": "^14 || ^16 || >=18"
3131
},
3232
"dependencies": {
3333
"tslib": "2.4.0"

0 commit comments

Comments
 (0)