Skip to content

Commit 433b16f

Browse files
authored
fix: drop node 10 support (#2157)
BREAKING CHANGE: drop node 10 support
1 parent 288f1cb commit 433b16f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
# lowest verison here should also be in `engines` field
14-
node_version: [10, 12, 'lts/*', 'node']
14+
node_version: [12, 'lts/*', 'node']
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Code

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@
8383
"preversion": "npm run build && (git diff --quiet || git commit -am build)"
8484
},
8585
"engines": {
86-
"node": ">= 10"
86+
"node": ">= 12"
8787
}
8888
}

0 commit comments

Comments
 (0)