From d9511db585d593c60ff3ce817d173adf10436887 Mon Sep 17 00:00:00 2001 From: "Dr. Dominik Jain" Date: Thu, 16 Jul 2026 17:00:20 +0200 Subject: [PATCH] :wrench: Auto-confirm pnpm modules purge in MCP bootstrap #10680 (#10681) pnpm occasionally detects an incompatible node_modules directory (e.g. after a store location or pnpm major version change) and interactively asks whether to remove and recreate it, blocking the MCP bootstrap in the devenv tmux pane. Set confirmModulesPurge: false in mcp/pnpm-workspace.yaml so the purge is auto-confirmed; this file is included in the npm pack tarball (unlike .npmrc) and applies to all install invocations from a single place. AI-assisted-by: claude-fable-5 --- mcp/pnpm-workspace.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mcp/pnpm-workspace.yaml b/mcp/pnpm-workspace.yaml index 60c228aba4..14eaeefa61 100644 --- a/mcp/pnpm-workspace.yaml +++ b/mcp/pnpm-workspace.yaml @@ -1,3 +1,8 @@ +# auto-confirm node_modules purge when pnpm detects an incompatible modules +# directory (e.g. after a store location or pnpm major version change), +# preventing the interactive prompt from blocking bootstrap +confirmModulesPurge: false + allowBuilds: esbuild: true sharp: false