From 4f7385a86400c5338a70fb73375a89068e303b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Beltr=C3=A1n?= Date: Sun, 26 Jan 2025 01:37:20 +0100 Subject: [PATCH] chore: drop support for non-active Node.js versions (#402) BREAKING CHANGE: dropping support for Node.js v16 and v18 --- .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 9d413b5..189a218 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: strategy: fail-fast: false matrix: - node_version: ['16', '18', '20', '22'] + node_version: ['20', '22'] steps: - name: Checkout repository diff --git a/package.json b/package.json index 0c8f51b..8bb2a91 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "typescript": "5.7.2" }, "engines": { - "node": "^16.0.0 || ^18.0.0 || ^20.0.0 || >=22.0.0", + "node": "^20.0.0 || ^22.0.0", "pnpm": "^9.15.0" }, "packageManager": "pnpm@9.15.4",