From 1acb36e4498b6a8e320c9d4c36f26d15f52083df Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Thu, 5 Jun 2025 10:19:25 -0400 Subject: [PATCH] feat!: remove Node 18 support This is a breaking change Signed-off-by: Lucas Holmquist --- .github/workflows/nodejs-ci-action.yml | 2 +- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index b2e715e..0b1bbdd 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x, 22.x, 24.x] + node-version: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 diff --git a/package-lock.json b/package-lock.json index ae1f2d2..0ca8dd1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -55,7 +55,7 @@ "webpack-cli": "^4.10.0" }, "engines": { - "node": ">=18 <=24" + "node": ">=20 <=24" } }, "node_modules/@ampproject/remapping": { diff --git a/package.json b/package.json index b5680ab..714f7a2 100644 --- a/package.json +++ b/package.json @@ -160,6 +160,6 @@ }, "types": "./dist/index.d.ts", "engines": { - "node": ">=18 <=24" + "node": ">=20 <=24" } }