Skip to content

Commit

Permalink
feat(node): drop support for node 12, 17
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node versions 12, 17 are no longer supported.
  • Loading branch information
djcsdy committed Oct 12, 2022
1 parent 2d5e6c1 commit eabdbb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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: [12.x, 14.x, 16.x, 17.x]
node-version: [14.x, 16.x, 18.x]
steps:
- name: Find yarn cache
id: find-yarn-cache
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"sideEffects": false,
"engines": {
"node": "^12 || ^14 || >=16"
"node": "^14 || ^16 || >=18"
},
"dependencies": {
"@softwareventures/array": "^0.31.0 || ^0.33.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
Expand Down

0 comments on commit eabdbb7

Please sign in to comment.