From fb688bdfd331f08420a4ba84cbf96533847c8045 Mon Sep 17 00:00:00 2001 From: SRS IT Date: Sun, 29 Mar 2026 12:41:12 -0400 Subject: [PATCH] fix: disable npm native module rebuild in electron-builder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All production deps (sql.js, ws, xml2js, etc.) are pure JS or WASM — none need native rebuilding for the Electron runtime. Disabling npmRebuild skips the @electron/rebuild step that was failing to find app-builder-lib/out/util/rebuild/remote-rebuild.js in CI. Co-Authored-By: Claude Sonnet 4.6 --- apps/desktop/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 993b1ba..a2c2856 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -40,6 +40,7 @@ "build": { "appId": "com.srsit.dibbywemomanager", "productName": "Dibby Wemo Manager", + "npmRebuild": false, "directories": { "output": "dist" },