mirror of
https://github.com/penpot/penpot.git
synced 2026-08-01 10:56:20 +00:00
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
20 lines
468 B
YAML
20 lines
468 B
YAML
# 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
|
|
|
|
linkWorkspacePackages: true
|
|
|
|
minimumReleaseAgeExclude:
|
|
- qs@6.14.2 || 6.15.2
|
|
- path-to-regexp@8.4.0
|
|
|
|
packages:
|
|
- "./packages/common"
|
|
- "./packages/server"
|
|
- "./packages/plugin"
|