@hienlh/ppm 0.5.4 → 0.5.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.5.5] - 2026-03-18
4
+
5
+ ### Fixed
6
+ - **Windows: PowerShell Start-Process fails with empty config arg** — filter empty strings from daemon spawn arguments
7
+
3
8
  ## [0.5.4] - 2026-03-18
4
9
 
5
10
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -302,7 +302,7 @@ export async function startServer(options: {
302
302
  const logFd = openSync(logFile, "a");
303
303
  const { resolve: resolvePath } = await import("node:path");
304
304
  const script = resolvePath(import.meta.dir, "index.ts");
305
- const args = ["__serve__", String(port), host, options.config ?? ""];
305
+ const args = ["__serve__", String(port), host, options.config ?? ""].filter(Boolean);
306
306
 
307
307
  let childPid: number;
308
308