Skip to content

Commit 1b4d93a

Browse files
committed
feat: drop support for node 10
node 10 is no longer supported. node 12 or later is now required.
1 parent 1ec9dc2 commit 1b4d93a

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]
14+
node-version: [12.x, 14.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
@@ -21,6 +21,9 @@
2121
"test": "ava"
2222
},
2323
"sideEffects": false,
24+
"engines": {
25+
"node": ">= 12"
26+
},
2427
"devDependencies": {
2528
"@softwareventures/eslint-config": "3.6.2",
2629
"@softwareventures/prettier-config": "1.0.2",

0 commit comments

Comments
 (0)