@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 +5 -0
- package/package.json +1 -1
- package/src/server/index.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/server/index.ts
CHANGED
|
@@ -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
|
|