Skip to content

Commit ea52b67

Browse files
committed
feat(node): drop support for node 18, 21, 23
BREAKING CHANGE: node versions 18, 21, 23 are no longer supported.
1 parent b1209d6 commit ea52b67

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x, 22.x, 23.x, 24.x, 25.x]
15+
node-version: [20.x, 22.x, 24.x, 25.x]
1616
steps:
1717
- name: git checkout
1818
uses: actions/checkout@v6

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"sideEffects": false,
2525
"engines": {
26-
"node": "^18 || >=20"
26+
"node": "^20 || ^22 || ^24 || >=25"
2727
},
2828
"dependencies": {
2929
"@softwareventures/nullable": "^1.0.0 || ^2.0.0 || ^3.0.0",

0 commit comments

Comments
 (0)