fix pnpm command

This commit is contained in:
Will Chen
2025-04-18 10:29:56 -07:00
parent fc446f992b
commit aa36986771

View File

@@ -65,7 +65,7 @@ async function executeAppLocalNode({
appId: number;
event: Electron.IpcMainInvokeEvent;
}): Promise<void> {
const process = spawn("pnpm install && pnpm run dev -- --port 32100", [], {
const process = spawn("pnpm install && pnpm run dev --port 32100", [], {
cwd: appPath,
shell: true,
stdio: "pipe", // Ensure stdio is piped so we can capture output/errors and detect close