From 15c4e15689f835037fda4bdda0c5424b7e4ccab0 Mon Sep 17 00:00:00 2001 From: G <41178744+catomean@users.noreply.github.com> Date: Sat, 29 Aug 2026 09:01:00 +0200 Subject: [PATCH] chore: declare node >=20, the version the box actually runs Was: >=18. Eighteen of thirty repos declared no Node version at all, and the twelve that did used five spellings of the same intent - >=18, >=20, >=20.0.0, >=22, >=22.19.0. The box runs 20.20.2, so >=22 was a claim nothing could satisfy and nothing would have caught. One spelling, matching the machine that runs it, turns an invisible mismatch into a loud one. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UvjGNAS9CMfEGNW26tUR4P --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e4ecb2c..417d5de 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "type": "module", "sideEffects": false, "engines": { - "node": ">=18" + "node": ">=20" }, "publishConfig": { "access": "public",