From 34f337cb480ac1ea2516183c37f89efeb791ca6d Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 25 Aug 2026 14:54:00 +0000 Subject: [PATCH] chore(repo): enforce the declared node/pnpm floors at install time Add `engine-strict=true` so the root `engines` range stops being advisory. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_012CZgmFFzqA9cX8tBMhvpFe --- .npmrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.npmrc b/.npmrc index 3e775efb0f..ad683a47cf 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,7 @@ auto-install-peers=true + +# Enforce the root `engines` range at install time instead of documenting it. +# Root package.json declares node >=22.11 / pnpm >=10; without this flag those +# are advisory and an unsupported toolchain fails later, in confusing ways. +# If this refused your install: upgrade node/pnpm to the declared floors. +engine-strict=true