From 2ac05ef4aa7e6cc81db57ffc1c1d388f22e64c40 Mon Sep 17 00:00:00 2001 From: Till JS Date: Sun, 15 Mar 2026 09:01:21 +0100 Subject: [PATCH] fix(picture-mobile): make patch-package non-fatal in postinstall patch-package fails when packages are hoisted to monorepo root (node-linker=hoisted). Making it non-fatal prevents EAS Build failures for other apps in the workspace. Co-Authored-By: Claude Opus 4.6 --- apps/picture/apps/mobile/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/picture/apps/mobile/package.json b/apps/picture/apps/mobile/package.json index 9f597d622..377ec2f9b 100644 --- a/apps/picture/apps/mobile/package.json +++ b/apps/picture/apps/mobile/package.json @@ -14,7 +14,7 @@ "lint": "eslint .", "format": "eslint . --fix", "type-check": "echo 'Skipping type-check: @picture/mobile needs theme system migration'", - "postinstall": "patch-package && ./scripts/build-workspace-deps.sh" + "postinstall": "patch-package || true && ./scripts/build-workspace-deps.sh" }, "dependencies": { "@callstack/liquid-glass": "^0.4.2",