Skip to content

Commit

Permalink
feat(node): drop support for node < 18, 19, 21
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node versions < 18, 19, 21 are no longer
supported.
  • Loading branch information
djcsdy committed Aug 23, 2024
1 parent 7075cbb commit 19992ea
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: [18.x, 20.x]
node-version: [18.x, 20.x, 22.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 @@ -17,7 +17,7 @@
},
"sideEffects": false,
"engines": {
"node": "^14 || ^16 || >=18"
"node": "^18 || ^20 || >=22"
},
"dependencies": {
"@softwareventures/array": "^7.0.0",
Expand Down

0 comments on commit 19992ea

Please sign in to comment.