@hienlh/ppm 0.8.41 → 0.8.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.8.41",
3
+ "version": "0.8.42",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "author": "hienlh",
6
6
  "license": "MIT",
@@ -127,8 +127,8 @@ async function main() {
127
127
  // (Bun.spawn + unref on Windows keeps child in same job object → dies when worker exits)
128
128
  let childPid: number;
129
129
  // Compiled binary: execPath IS the server, no "run script" needed
130
- const { isCompiledBinary } = await import("../../services/autostart-generator.ts");
131
- const serverArgs = isCompiledBinary()
130
+ const isCompiled = !process.execPath.includes("bun");
131
+ const serverArgs = isCompiled
132
132
  ? ["__serve__", String(P.port), P.host, P.config].filter(Boolean)
133
133
  : ["run", P.serverScript, "__serve__", String(P.port), P.host, P.config].filter(Boolean);
134
134
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file