@hienlh/ppm 0.5.5 → 0.5.6
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/index.ts +4 -1
- package/src/server/index.ts +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -7,7 +7,10 @@ const program = new Command();
|
|
|
7
7
|
program
|
|
8
8
|
.name("ppm")
|
|
9
9
|
.description("Personal Project Manager — mobile-first web IDE")
|
|
10
|
-
.version(VERSION)
|
|
10
|
+
.version(VERSION)
|
|
11
|
+
.hook("preAction", () => {
|
|
12
|
+
console.log(` PPM v${VERSION}\n`);
|
|
13
|
+
});
|
|
11
14
|
|
|
12
15
|
program
|
|
13
16
|
.command("start")
|
package/src/server/index.ts
CHANGED
|
@@ -358,7 +358,7 @@ export async function startServer(options: {
|
|
|
358
358
|
writeFileSync(statusFile, JSON.stringify(status));
|
|
359
359
|
writeFileSync(pidFile, String(childPid));
|
|
360
360
|
|
|
361
|
-
console.log(
|
|
361
|
+
console.log(` Daemon started (PID: ${childPid})\n`);
|
|
362
362
|
console.log(` ➜ Local: http://localhost:${port}/`);
|
|
363
363
|
if (shareUrl) {
|
|
364
364
|
console.log(` ➜ Share: ${shareUrl}`);
|
|
@@ -441,7 +441,7 @@ export async function startServer(options: {
|
|
|
441
441
|
// Start background usage polling
|
|
442
442
|
import("../services/claude-usage.service.ts").then(({ startUsagePolling }) => startUsagePolling()).catch(() => {});
|
|
443
443
|
|
|
444
|
-
console.log(`\n PPM
|
|
444
|
+
console.log(`\n PPM ready\n`);
|
|
445
445
|
console.log(` ➜ Local: http://localhost:${server.port}/`);
|
|
446
446
|
|
|
447
447
|
const { networkInterfaces } = await import("node:os");
|