mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-26 19:12:12 -04:00
* fix: handle verifyDepsBeforeRun prompt in non-TTY environments In non-interactive environments like CI, verifyDepsBeforeRun: 'prompt' would silently exit with code 0 even when node_modules were out of sync. This could cause tests to pass when they should fail. Now, pnpm throws an error in non-TTY environments, alerting users that they need to run 'pnpm install' first. Also handles Ctrl+C gracefully during the prompt - exits cleanly without showing a stack trace. Fixes #10889 Fixes #10888 * fix: improve Ctrl+C handling and fix prompt TTY guard - Replace brittle ERR_USE_AFTER_CLOSE check with generic catch for prompt cancellation (enquirer rejects with empty string on Ctrl+C, not that error) - Fix prompt test to mock isTTY=true since Jest runs in non-TTY environment - Fix test description "noTTY" → "non-TTY" Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: narrow try/catch to only wrap enquirer.prompt Avoid catching errors from install() which should propagate normally. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: zubeyralmaho <zubeyralmaho@users.noreply.github.com> Co-authored-by: Zoltan Kochan <z@kochan.io> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>