From aeeae53b1f12cd692522b1f3d629bd7c6d50e8ac Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Tue, 28 Jul 2026 21:34:55 -0700 Subject: [PATCH] fix(build): stop `pnpm -r` from crawling the mobile workspace (#11291) Co-authored-by: Orca --- pnpm-workspace.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pnpm-workspace.yaml diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 000000000..52304c4de --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,5 @@ +# The desktop app is a single-project install. `mobile/` is a separate workspace +# with its own pnpm-workspace.yaml and lockfile, so keep it out of the root +# package graph. Without this file `pnpm -r` auto-discovers mobile/ and its +# nested package, and the root's patchedDependencies fail as ERR_PNPM_UNUSED_PATCH. +packages: []