From 9eaa7c86d4ad135c895d8c91513cf4ae40e9d86f Mon Sep 17 00:00:00 2001 From: Andrew Jarrett Date: Sat, 4 Oct 2025 02:33:17 -0500 Subject: [PATCH] build(*): `pnpm reboot` now fetches optional dependencies to better test dep compat story --- bin/reboot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reboot.ts b/bin/reboot.ts index b48bbbeb..ed3d7d7d 100755 --- a/bin/reboot.ts +++ b/bin/reboot.ts @@ -8,7 +8,7 @@ type StdIn = [name: string, stdio: string] export const stdins = [ ["clean", "pnpm run clean"], - ["install", "pnpm i"], + ["install", "pnpm install --force"], ["check", "pnpm run check"], ["describe", "pnpm run describe"], ["test", "pnpm run test"],