pinggy 0.4.6 → 0.4.8
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/README.md +92 -4
- package/dist/{chunk-STEISST3.js → chunk-YFTL44B3.js} +25 -5
- package/dist/index.cjs +735 -113
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2 -2
- package/dist/{main-XKFFUSKJ.js → main-4WTJG54V.js} +667 -100
- package/dist/workers/file_serve_worker.cjs +14 -2
- package/dist/workers/file_serve_worker.js +14 -2
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -378,6 +378,10 @@ declare class TunnelManager implements ITunnelManager {
|
|
|
378
378
|
*/
|
|
379
379
|
private normalizeStats;
|
|
380
380
|
private parseNumber;
|
|
381
|
+
/**
|
|
382
|
+
* Read serve path only from config.optional.serve.
|
|
383
|
+
*/
|
|
384
|
+
private resolveServePath;
|
|
381
385
|
private startStaticFileServer;
|
|
382
386
|
}
|
|
383
387
|
|
package/dist/index.d.ts
CHANGED
|
@@ -378,6 +378,10 @@ declare class TunnelManager implements ITunnelManager {
|
|
|
378
378
|
*/
|
|
379
379
|
private normalizeStats;
|
|
380
380
|
private parseNumber;
|
|
381
|
+
/**
|
|
382
|
+
* Read serve path only from config.optional.serve.
|
|
383
|
+
*/
|
|
384
|
+
private resolveServePath;
|
|
381
385
|
private startStaticFileServer;
|
|
382
386
|
}
|
|
383
387
|
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
initiateRemoteManagement,
|
|
12
12
|
printer_default,
|
|
13
13
|
startRemoteManagement
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-YFTL44B3.js";
|
|
15
15
|
import {
|
|
16
16
|
enablePackageLogging
|
|
17
17
|
} from "./chunk-3RTRUYNW.js";
|
|
@@ -106,7 +106,7 @@ async function verifyAndLoad() {
|
|
|
106
106
|
process.exit(1);
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
-
await import("./main-
|
|
109
|
+
await import("./main-4WTJG54V.js");
|
|
110
110
|
}
|
|
111
111
|
verifyAndLoad().catch((err) => {
|
|
112
112
|
printer_default.fatal(`Failed to start CLI:, ${err}`);
|