From 502aae3c1459b1f69eb5b7174c3974af3cbeafc7 Mon Sep 17 00:00:00 2001 From: Gagan Date: Mon, 6 Jul 2026 16:11:38 +0530 Subject: [PATCH] fix(x): resolve baileys build approval placeholder blocking package build The mobile-channels feature added baileys, whose install-time scripts require build approval. A placeholder value ("set this to true or false") was left in the allowBuilds block of pnpm-workspace.yaml. pnpm 11 treats an unresolved build decision as a hard error, causing pnpm install to exit non-zero and abort Electron Forge's generateAssets hook during npm run package. Set baileys: true to match the onlyBuiltDependencies entry. --- apps/x/pnpm-workspace.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/x/pnpm-workspace.yaml b/apps/x/pnpm-workspace.yaml index 5024847a..4b07e082 100644 --- a/apps/x/pnpm-workspace.yaml +++ b/apps/x/pnpm-workspace.yaml @@ -3,7 +3,7 @@ packages: - packages/* allowBuilds: - baileys: set this to true or false + baileys: true core-js: true electron: true electron-winstaller: true