@hienlh/ppm 0.4.3 → 0.4.4

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,10 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## [0.4.3] - 2026-03-17
3
+ ## [0.4.4] - 2026-03-17
4
4
 
5
5
  ### Fixed
6
- - npm package too large (79MB→~2MB): exclude compiled binary and leaked Monaco workers
7
- - Add `dist/ppm` and `src/web/Users/` to .npmignore
6
+ - Windows: cloudflared tunnel uses 127.0.0.1 instead of localhost (IPv6 mismatch)
7
+ - npm package size reduced from 79MB to ~580KB (exclude compiled binary + leaked Monaco workers)
8
8
 
9
9
  ## [0.4.2] - 2026-03-17
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -20,7 +20,7 @@ class TunnelService {
20
20
  const bin = await ensureCloudflared();
21
21
 
22
22
  const proc = Bun.spawn(
23
- [bin, "tunnel", "--url", `http://localhost:${port}`],
23
+ [bin, "tunnel", "--url", `http://127.0.0.1:${port}`],
24
24
  { stderr: "pipe", stdout: "ignore", stdin: "ignore" },
25
25
  );
26
26
  this.childProcess = proc;