Skip to content

Commit

Permalink
feat(node): drop support for node < 12 || ^13 || ^15
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node < 12 || ^13 || ^15 are no longer
supported.
  • Loading branch information
djcsdy committed Jul 7, 2021
1 parent 20c527d commit 1b76350
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x]
steps:
- name: Find yarn cache
id: find-yarn-cache
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"test": "ava"
},
"sideEffects": false,
"engines": {
"node": "^12 || ^14 || >=16"
},
"dependencies": {
"dictionary-types": "^1.2.0",
"tslib": "2.3.0"
Expand Down

0 comments on commit 1b76350

Please sign in to comment.