From b219d3bd3f1992b94c61a3ec4e2f4474b8523019 Mon Sep 17 00:00:00 2001 From: MYQ Date: Sun, 19 Jul 2026 05:49:41 +0800 Subject: [PATCH] fix(build): resolve ERR_PNPM_IGNORED_BUILDS for electron-winstaller The allowBuilds map in pnpm-workspace.yaml had an unresolved placeholder value 'set this to true or false' for electron-winstaller, which caused pnpm 11.x to block the install script. pnpm dev internally runs a dependency check that failed with ERR_PNPM_IGNORED_BUILDS, preventing the dev server from starting. Changed to explicit true to allow electron-winstaller's 7-Zip arch selection script to run during install. Co-Authored-By: Claude Opus 4.8 (1M context) --- pnpm-workspace.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index bb222d6..7e99338 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,6 +1,6 @@ allowBuilds: better-sqlite3: true - electron-winstaller: set this to true or false + electron-winstaller: true esbuild: true onlyBuiltDependencies: - better-sqlite3