@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 +3 -3
- package/package.json +1 -1
- package/src/services/tunnel.service.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.4.
|
|
3
|
+
## [0.4.4] - 2026-03-17
|
|
4
4
|
|
|
5
5
|
### Fixed
|
|
6
|
-
-
|
|
7
|
-
-
|
|
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
|
@@ -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://
|
|
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;
|