From e1879eadc54cea1c4d1d23f013823ba6f3816069 Mon Sep 17 00:00:00 2001 From: Robbie Wagner Date: Thu, 26 Jun 2025 12:37:17 -0400 Subject: [PATCH 1/2] Require node >= 20.x --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fcc87a6..2690c4f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [18.x, 20.x, 22.x] + node: [20.x, 22.x] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/package.json b/package.json index ed819244..b16bb9d4 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "svelte": "4.x || 5.x" }, "engines": { - "node": ">18.12" + "node": ">= 20" }, "peerDependenciesMeta": { "@vue/compiler-sfc": { From 9e5db141385ff472ba66c2f9c24c8d182fc99f93 Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Wed, 9 Jul 2025 07:48:59 -0400 Subject: [PATCH 2/2] Add checking 24.x --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2690c4f8..2e8b31d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [20.x, 22.x] + node: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4