From ff676b18468f04a0aef89b1e2e221e4470af2682 Mon Sep 17 00:00:00 2001 From: Noah Maizels Date: Thu, 28 May 2026 05:03:02 +0700 Subject: [PATCH] chore: align .nvmrc with the Node 20 baseline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .nvmrc pinned 22.21.0 while package.json `engines` (>=20) and the CI workflows (node-version: '20') both target Node 20. That let local dev and Netlify diverge from CI — and is how a Node-22-only API (fs.globSync) slipped into a build script. Pin .nvmrc to 20.20.2 to match. --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index f5b3ef39f..92bc26a42 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22.21.0 \ No newline at end of file +20.20.2 \ No newline at end of file