feat!: remove Node 18 support

This is a breaking change

Signed-off-by: Lucas Holmquist <lholmqui@redhat.com>
This commit is contained in:
Lucas Holmquist 2025-06-05 10:19:25 -04:00
parent beac7356a7
commit 1acb36e449
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [18.x, 20.x, 22.x, 24.x] node-version: [20.x, 22.x, 24.x]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

2
package-lock.json generated
View File

@ -55,7 +55,7 @@
"webpack-cli": "^4.10.0" "webpack-cli": "^4.10.0"
}, },
"engines": { "engines": {
"node": ">=18 <=24" "node": ">=20 <=24"
} }
}, },
"node_modules/@ampproject/remapping": { "node_modules/@ampproject/remapping": {

View File

@ -160,6 +160,6 @@
}, },
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"engines": { "engines": {
"node": ">=18 <=24" "node": ">=20 <=24"
} }
} }