From 6c7adb140d39cd2007877114fc1d785f191ffe57 Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Fri, 12 Dec 2025 15:25:06 -0500 Subject: [PATCH] fix: correct build command for Electron in package.json - Updated the build command for Electron to ensure it correctly references the workspace for the app. - This change improves the build process and resolves potential issues with workspace management. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 98dade6e..5ef7a387 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "dev:full": "concurrently \"npm run dev:server\" \"npm run dev:web\"", "build": "npm run build --workspace=apps/app", "build:server": "npm run build --workspace=apps/server", - "build:electron": "npm run build --workspace=apps/app", + "build:electron": "npm run build:electron --workspace=apps/app", "start": "npm run start --workspace=apps/app", "start:server": "npm run start --workspace=apps/server", "lint": "npm run lint --workspace=apps/app",