mirror of
https://github.com/pnpm/pnpm.git
synced 2026-06-28 01:45:30 -04:00
When running from the standalone executable, `pnpm setup` installs pnpm via `pnpm add -g file:<dir>`. The shipped `@pnpm/exe` package.json carries preinstall/prepare scripts, which triggered a build-approval prompt for pnpm's own install. pnpm links the platform-specific binary itself, so these scripts are unnecessary (and unrunnable on a Node-less host); pass --ignore-scripts to skip them. Closes https://github.com/pnpm/pnpm/issues/12377