From b3fdb2f8a65c1798562e6e3b118b720888bf1607 Mon Sep 17 00:00:00 2001 From: DanMat Date: Sun, 26 Jul 2026 16:34:53 -0400 Subject: [PATCH] fix: bump the repo's .nvmrc from Node 14.8.0 to 24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The root .nvmrc still pinned Node 14.8.0 from project inception — below this project's own engines floor (>=18) and the version it develops, tests (CI: 20/22/24), and generates projects for (DEFAULT_NODE 24). So `nvm use` in the repo selected a Node that can't run the toolchain. Set it to 24 to match the project's default line. Co-Authored-By: Claude Opus 4.8 --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index 9306ff9..a45fd52 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -14.8.0 +24