From 982d2a645ba7d2a4dad664324c072b0b288a2df5 Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Thu, 5 Jun 2025 10:03:40 -0400 Subject: [PATCH] feat!: remove Node 18 support This is a breaking change --- .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 7f200ea..4b4501b 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 22.x, 24.x] + node-version: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v3 diff --git a/package-lock.json b/package-lock.json index 1e0e695..299a074 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,7 @@ "tape": "~5.8.1" }, "engines": { - "node": "^24 || ^22 || ^20 || ^18" + "node": "^24 || ^22 || ^20" } }, "node_modules/@aashutoshrathi/word-wrap": { diff --git a/package.json b/package.json index 535ba88..fa43adf 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ } ], "engines": { - "node": "^24 || ^22 || ^20 || ^18" + "node": "^24 || ^22 || ^20" }, "repository": { "type": "git",