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.
This commit is contained in:
Cody Seibert
2025-12-12 15:25:06 -05:00
parent 18182bbc94
commit 6c7adb140d

View File

@@ -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",