Skip to content

Commit 8d401ab

Browse files
committed
feat(node): drop support for node 13, 15
BREAKING CHANGE: node versions 13, 15 are no longer supported.
1 parent 35a3428 commit 8d401ab

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: [12.x, 14.x, 16.x, 17.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
@@ -22,7 +22,7 @@
2222
},
2323
"sideEffects": false,
2424
"engines": {
25-
"node": ">= 12"
25+
"node": "^12 || ^14 || ^16 || >=17"
2626
},
2727
"dependencies": {
2828
"@softwareventures/nullable": "^1.0.0 || ^1.0.0 || ^1.2.1 || ^2.0.0",

0 commit comments

Comments
 (0)