@apps-in-toss/devtools 3.0.5 → 3.1.0-beta.1
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/LICENSE +28 -201
- package/README.md +871 -237
- package/dist/mock/2x.d.ts +155 -3
- package/dist/mock/2x.js +1560 -1306
- package/dist/mock/3x.d.ts +123 -3
- package/dist/mock/3x.js +1507 -1245
- package/dist/mock/index.d.ts +123 -3
- package/dist/mock/index.js +1507 -1245
- package/dist/panel/index.js +106 -154
- package/dist/tunnel-BvEf1qGV.js +186 -0
- package/dist/tunnel-DtCTOUlp.cjs +187 -0
- package/dist/unplugin/index.cjs +147 -12
- package/dist/unplugin/index.d.cts +78 -408
- package/dist/unplugin/index.d.ts +78 -408
- package/dist/unplugin/index.js +147 -13
- package/dist/unplugin/tunnel.cjs +191 -0
- package/dist/unplugin/tunnel.d.cts +140 -0
- package/dist/unplugin/tunnel.d.ts +140 -0
- package/dist/unplugin/tunnel.js +186 -0
- package/package.json +8 -5
- package/CHANGELOG.md +0 -32
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
let node_fs = require("node:fs");
|
|
2
|
+
let node_path = require("node:path");
|
|
3
|
+
let node_fs_promises = require("node:fs/promises");
|
|
4
|
+
//#region src/unplugin/tunnel.ts
|
|
5
|
+
/**
|
|
6
|
+
* Cloudflare quick-tunnel helper for the devtools unplugin.
|
|
7
|
+
*
|
|
8
|
+
* Loaded lazily (`await import('./tunnel.js')`) only when the `tunnel` option is
|
|
9
|
+
* on, so `cloudflared` / `qrcode-terminal` are never pulled in for the common
|
|
10
|
+
* case. This is the one place in `@apps-in-toss/devtools` that depends on Node-only
|
|
11
|
+
* APIs (`child_process` via the `cloudflared` wrapper) — keep it thin and out of
|
|
12
|
+
* jsdom unit tests; the spawn path is verified by hand / e2e (same spirit as the
|
|
13
|
+
* "web 모드는 e2e" rule in CLAUDE.md). The pure helpers below
|
|
14
|
+
* (`parseTrycloudflareUrl`, `printTunnelBanner`) are unit-tested.
|
|
15
|
+
*/
|
|
16
|
+
/** Matches the public URL cloudflared prints for an unauthenticated quick tunnel. */
|
|
17
|
+
const TRYCLOUDFLARE_RE = /https:\/\/[a-z0-9-]+\.trycloudflare\.com/i;
|
|
18
|
+
/**
|
|
19
|
+
* Extract the `https://<sub>.trycloudflare.com` URL from a line of cloudflared
|
|
20
|
+
* output, or `null` if the line doesn't contain one. Pulled out as a pure
|
|
21
|
+
* function so it can be unit-tested without spawning anything.
|
|
22
|
+
*/
|
|
23
|
+
function parseTrycloudflareUrl(line) {
|
|
24
|
+
const m = line.match(TRYCLOUDFLARE_RE);
|
|
25
|
+
return m ? m[0] : null;
|
|
26
|
+
}
|
|
27
|
+
const LAUNCHER_URL = "https://devtools.aitc.dev/launcher/";
|
|
28
|
+
/**
|
|
29
|
+
* Build the deep-link URL that QR codes encode: when the launcher PWA is
|
|
30
|
+
* already on the phone's home screen, scanning this opens it directly into the
|
|
31
|
+
* live view for `tunnelUrl` (the launcher consumes `?url=` and clears it).
|
|
32
|
+
* Plain-text raw URL is no longer enough — the launcher gates its setup UI to
|
|
33
|
+
* the installed PWA, so a raw tunnel URL opened in a normal browser tab would
|
|
34
|
+
* land on a "please install" screen.
|
|
35
|
+
*
|
|
36
|
+
* When `opts.name` is given (non-blank), it is added as `&name=` so the launcher
|
|
37
|
+
* partner bar shows the app name instead of the generic default (#498).
|
|
38
|
+
*
|
|
39
|
+
* When `opts.webViewType` is `'game'`, `&navBarType=game` is appended so the
|
|
40
|
+
* launcher enters game nav chrome (floating capsule, no full bar) automatically
|
|
41
|
+
* on scan. `'partner'` is the launcher's implicit default and is not added to
|
|
42
|
+
* keep the URL clean (#584).
|
|
43
|
+
*
|
|
44
|
+
* When `opts.navBarTransparent` is `true`, `&navBarTransparent=1` is appended
|
|
45
|
+
* so the launcher partner bar renders with a transparent background (#587).
|
|
46
|
+
*
|
|
47
|
+
* When `opts.navBarTheme` is `'light'` or `'dark'`, `&navBarTheme=<v>` is
|
|
48
|
+
* appended so the launcher partner bar uses the matching foreground colour (#587).
|
|
49
|
+
*/
|
|
50
|
+
function buildLauncherDeepLink(tunnelUrl, optsParam) {
|
|
51
|
+
const opts = optsParam ?? {};
|
|
52
|
+
let url = `${LAUNCHER_URL}?url=${encodeURIComponent(tunnelUrl)}`;
|
|
53
|
+
if (opts.name !== void 0 && opts.name.trim() !== "") url += `&name=${encodeURIComponent(opts.name.trim())}`;
|
|
54
|
+
if (opts.webViewType === "game") url += "&navBarType=game";
|
|
55
|
+
if (opts.navBarTransparent === true) url += "&navBarTransparent=1";
|
|
56
|
+
if (opts.navBarTheme === "light" || opts.navBarTheme === "dark") url += `&navBarTheme=${opts.navBarTheme}`;
|
|
57
|
+
return url;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Print the terminal banner announcing the live tunnel: the public URL, an ASCII
|
|
61
|
+
* QR encoding a launcher deep-link, and a one-line note that quick tunnels are
|
|
62
|
+
* ephemeral, unauthenticated and not for production. Pure w.r.t. side effects
|
|
63
|
+
* other than the injected `log` sink and `qrcode-terminal` — unit-tested.
|
|
64
|
+
*/
|
|
65
|
+
async function printTunnelBanner(url, opts = {}) {
|
|
66
|
+
const log = opts.log ?? ((m) => console.log(m));
|
|
67
|
+
const deepLink = buildLauncherDeepLink(url, {
|
|
68
|
+
name: opts.name,
|
|
69
|
+
webViewType: opts.webViewType,
|
|
70
|
+
navBarTransparent: opts.navBarTransparent,
|
|
71
|
+
navBarTheme: opts.navBarTheme
|
|
72
|
+
});
|
|
73
|
+
log([
|
|
74
|
+
"",
|
|
75
|
+
" ┌─ @apps-in-toss/devtools · live tunnel ────────────────────────────",
|
|
76
|
+
` │ ${url}`,
|
|
77
|
+
" │",
|
|
78
|
+
` │ Install the launcher PWA once: ${LAUNCHER_URL}`,
|
|
79
|
+
" │ Then scan the QR below — it opens the launcher directly",
|
|
80
|
+
" │ into this tunnel URL (no manual paste needed).",
|
|
81
|
+
" │ Quick tunnels are unauthenticated, change every run, and are",
|
|
82
|
+
" │ not for production use.",
|
|
83
|
+
" └──────────────────────────────────────────────────────────────",
|
|
84
|
+
""
|
|
85
|
+
].join("\n"));
|
|
86
|
+
if (opts.qr !== false) {
|
|
87
|
+
const qrcode = (await import("qrcode-terminal")).default;
|
|
88
|
+
await new Promise((resolve) => {
|
|
89
|
+
qrcode.generate(deepLink, { small: true }, (out) => {
|
|
90
|
+
log(out);
|
|
91
|
+
resolve();
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Sanitize cloudflared stderr output for error diagnostics (#421).
|
|
98
|
+
*
|
|
99
|
+
* Masks `*.trycloudflare.com` hostnames and full `https://` / `wss://` URLs
|
|
100
|
+
* that carry those hostnames so tunnel host values never appear in error
|
|
101
|
+
* messages. Diagnostic content (error codes, reasons, JSON blobs) is preserved.
|
|
102
|
+
*
|
|
103
|
+
* SECRET-HANDLING: tunnel host is SECRET-class per harness policy — only
|
|
104
|
+
* placeholder text is emitted.
|
|
105
|
+
*/
|
|
106
|
+
function sanitizeCloudflaredOutput(line) {
|
|
107
|
+
let s = line.replace(/(?:https?|wss?):\/\/[a-z0-9-]+\.trycloudflare\.com(?:\/[^\s]*)*/gi, (m) => m.replace(/[a-z0-9-]+\.trycloudflare\.com/i, "<HOST>.trycloudflare.com"));
|
|
108
|
+
s = s.replace(/[a-z0-9-]+\.trycloudflare\.com/gi, "<HOST>.trycloudflare.com");
|
|
109
|
+
return s;
|
|
110
|
+
}
|
|
111
|
+
const URL_TIMEOUT_MS = 2e4;
|
|
112
|
+
/**
|
|
113
|
+
* Start an unauthenticated Cloudflare quick tunnel to `http://localhost:<port>`
|
|
114
|
+
* and resolve once the public URL is known. Downloads the `cloudflared` binary
|
|
115
|
+
* on first use if it is not already installed. Rejects with a friendly error if
|
|
116
|
+
* no URL appears within {@link URL_TIMEOUT_MS}.
|
|
117
|
+
*/
|
|
118
|
+
async function startQuickTunnel(port) {
|
|
119
|
+
const { bin, install, Tunnel } = await import("cloudflared");
|
|
120
|
+
if (!(0, node_fs.existsSync)(bin)) {
|
|
121
|
+
await (0, node_fs_promises.mkdir)((0, node_path.dirname)(bin), { recursive: true });
|
|
122
|
+
await install(bin);
|
|
123
|
+
}
|
|
124
|
+
const tunnel = Tunnel.quick(`http://localhost:${port}`);
|
|
125
|
+
let stopped = false;
|
|
126
|
+
const stop = () => {
|
|
127
|
+
if (stopped) return;
|
|
128
|
+
stopped = true;
|
|
129
|
+
try {
|
|
130
|
+
tunnel.stop();
|
|
131
|
+
} catch {}
|
|
132
|
+
};
|
|
133
|
+
return new Promise((resolve, reject) => {
|
|
134
|
+
const stderrLines = [];
|
|
135
|
+
/**
|
|
136
|
+
* Format the last `n` sanitized stderr lines as a diagnostic appendix.
|
|
137
|
+
* Returns an empty string when no lines have been collected.
|
|
138
|
+
*/
|
|
139
|
+
const stderrTail = (n = 15) => {
|
|
140
|
+
if (stderrLines.length === 0) return "";
|
|
141
|
+
const tail = stderrLines.slice(-n).map(sanitizeCloudflaredOutput).join("");
|
|
142
|
+
return `\ncloudflared 출력 (마지막 ${Math.min(n, stderrLines.length)}줄):\n${tail}`;
|
|
143
|
+
};
|
|
144
|
+
const timer = setTimeout(() => {
|
|
145
|
+
cleanup();
|
|
146
|
+
stop();
|
|
147
|
+
reject(/* @__PURE__ */ new Error(`[@apps-in-toss/devtools] cloudflared did not report a tunnel URL within ${URL_TIMEOUT_MS / 1e3}s. Check your network connection, or run \`cloudflared tunnel --url http://localhost:${port}\` manually.${stderrTail()}`));
|
|
148
|
+
}, URL_TIMEOUT_MS);
|
|
149
|
+
const onUrl = (line) => {
|
|
150
|
+
const found = parseTrycloudflareUrl(line);
|
|
151
|
+
if (!found) return;
|
|
152
|
+
clearTimeout(timer);
|
|
153
|
+
cleanup();
|
|
154
|
+
resolve({
|
|
155
|
+
url: found,
|
|
156
|
+
stop
|
|
157
|
+
});
|
|
158
|
+
};
|
|
159
|
+
const pushStderr = (line) => {
|
|
160
|
+
stderrLines.push(line);
|
|
161
|
+
};
|
|
162
|
+
const cleanup = () => {
|
|
163
|
+
tunnel.off("stdout", onUrl);
|
|
164
|
+
tunnel.off("stderr", onUrl);
|
|
165
|
+
tunnel.off("stderr", pushStderr);
|
|
166
|
+
};
|
|
167
|
+
tunnel.once("url", onUrl);
|
|
168
|
+
tunnel.on("stdout", onUrl);
|
|
169
|
+
tunnel.on("stderr", onUrl);
|
|
170
|
+
tunnel.on("stderr", pushStderr);
|
|
171
|
+
tunnel.once("error", (err) => {
|
|
172
|
+
clearTimeout(timer);
|
|
173
|
+
cleanup();
|
|
174
|
+
stop();
|
|
175
|
+
reject(err);
|
|
176
|
+
});
|
|
177
|
+
tunnel.once("exit", (code) => {
|
|
178
|
+
if (stopped) return;
|
|
179
|
+
clearTimeout(timer);
|
|
180
|
+
cleanup();
|
|
181
|
+
reject(/* @__PURE__ */ new Error(`[@apps-in-toss/devtools] cloudflared exited (code ${code ?? "null"}) before reporting a tunnel URL.${stderrTail()}`));
|
|
182
|
+
});
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
//#endregion
|
|
186
|
+
exports.printTunnelBanner = printTunnelBanner;
|
|
187
|
+
exports.startQuickTunnel = startQuickTunnel;
|
package/dist/unplugin/index.cjs
CHANGED
|
@@ -6,6 +6,71 @@ let node_fs = require("node:fs");
|
|
|
6
6
|
let node_module = require("node:module");
|
|
7
7
|
let node_path = require("node:path");
|
|
8
8
|
let unplugin = require("unplugin");
|
|
9
|
+
//#region src/shared/parent-watcher.ts
|
|
10
|
+
/**
|
|
11
|
+
* Shared parent-PID watcher — used by both the MCP debug daemon and the
|
|
12
|
+
* unplugin tunnel path to self-terminate when the parent process (e.g. Claude
|
|
13
|
+
* Code, vite) has died or been reparented without sending SIGTERM/SIGHUP.
|
|
14
|
+
*
|
|
15
|
+
* Intentionally react-free and Node-stdlib-only so this module is safe to
|
|
16
|
+
* import from the MCP daemon bundle (`dist/mcp/cli.js`) without violating the
|
|
17
|
+
* install-graph invariant.
|
|
18
|
+
*/
|
|
19
|
+
/**
|
|
20
|
+
* Returns `true` when the given PID refers to a running process.
|
|
21
|
+
*
|
|
22
|
+
* Uses `process.kill(pid, 0)` — a no-op signal that succeeds when the process
|
|
23
|
+
* exists and we have permission to signal it; throws ESRCH when it doesn't exist.
|
|
24
|
+
*/
|
|
25
|
+
function isPidAlive(pid) {
|
|
26
|
+
try {
|
|
27
|
+
process.kill(pid, 0);
|
|
28
|
+
return true;
|
|
29
|
+
} catch (err) {
|
|
30
|
+
if (err.code === "EPERM") return true;
|
|
31
|
+
return false;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Starts a periodic watcher that detects when the parent process (e.g. Claude
|
|
36
|
+
* Code) has died without sending SIGTERM/SIGHUP, and calls `onOrphaned` so the
|
|
37
|
+
* daemon can self-terminate rather than running as a zombie.
|
|
38
|
+
*
|
|
39
|
+
* Mirrors the `startAttachWatcher` pattern: `setInterval`-based, returns
|
|
40
|
+
* `{ stop(): void }`, injectable deps for testability.
|
|
41
|
+
*
|
|
42
|
+
* @param onOrphaned - Called once when the parent is gone.
|
|
43
|
+
* @param opts.intervalMs - Poll interval in milliseconds (default 5 000).
|
|
44
|
+
* @param opts.initialPpid - Parent PID to watch (default `process.ppid`).
|
|
45
|
+
* @param opts.isAlive - Predicate to test if a PID is running (default `isPidAlive`).
|
|
46
|
+
* @param opts.getPpid - Supplier of current ppid (default `() => process.ppid`).
|
|
47
|
+
* Detects ppid changes as well as death.
|
|
48
|
+
* @param opts.log - Logger (default `process.stderr.write`).
|
|
49
|
+
*
|
|
50
|
+
* @returns `stop` — call during shutdown to clear the interval.
|
|
51
|
+
*/
|
|
52
|
+
function startParentWatcher(onOrphaned, opts) {
|
|
53
|
+
const { intervalMs = 5e3, initialPpid = process.ppid, isAlive = isPidAlive, getPpid = () => process.ppid, log = (msg) => process.stderr.write(msg) } = opts ?? {};
|
|
54
|
+
if (initialPpid <= 1) {
|
|
55
|
+
log("[ait-debug] parent-pid watcher: no parent to watch (ppid<=1), skipping\n");
|
|
56
|
+
return { stop() {} };
|
|
57
|
+
}
|
|
58
|
+
let fired = false;
|
|
59
|
+
const handle = setInterval(() => {
|
|
60
|
+
if (fired) return;
|
|
61
|
+
const currentPpid = getPpid();
|
|
62
|
+
if (currentPpid !== initialPpid || !isAlive(initialPpid)) {
|
|
63
|
+
fired = true;
|
|
64
|
+
clearInterval(handle);
|
|
65
|
+
log(`[ait-debug] parent-pid watcher: parent PID ${initialPpid} is gone (currentPpid=${currentPpid}) — shutting down\n`);
|
|
66
|
+
onOrphaned();
|
|
67
|
+
}
|
|
68
|
+
}, intervalMs);
|
|
69
|
+
return { stop() {
|
|
70
|
+
clearInterval(handle);
|
|
71
|
+
} };
|
|
72
|
+
}
|
|
73
|
+
//#endregion
|
|
9
74
|
//#region src/unplugin/index.ts
|
|
10
75
|
/**
|
|
11
76
|
* @apps-in-toss/devtools unplugin
|
|
@@ -59,14 +124,6 @@ function detectInstalledSdkMajor(cwd = process.cwd()) {
|
|
|
59
124
|
} catch {}
|
|
60
125
|
return null;
|
|
61
126
|
}
|
|
62
|
-
/**
|
|
63
|
-
* 패널 자동 주입 대상 진입점 파일명 기본 패턴. `entryPattern` 옵션 미지정 시
|
|
64
|
-
* 사용된다. `id.test()`는 상태를 갖지 않아야 하므로(매 파일마다 호출) 이
|
|
65
|
-
* 패턴과 사용자 지정 `entryPattern` 모두 `g`/`y` 플래그를 붙이지 않는다는
|
|
66
|
-
* 전제다 — `RegExp.prototype.test`는 global/sticky 플래그가 있으면 호출마다
|
|
67
|
-
* `lastIndex`가 전진해 다음 파일 매칭이 간헐적으로 실패한다.
|
|
68
|
-
*/
|
|
69
|
-
const DEFAULT_ENTRY_PATTERN = /\/(main|index|entry|app)\.[tj]sx?$/i;
|
|
70
127
|
const FRAMEWORK_ID = "@apps-in-toss/web-framework";
|
|
71
128
|
const BRIDGE_ID = "@apps-in-toss/web-bridge";
|
|
72
129
|
const ANALYTICS_ID = "@apps-in-toss/web-analytics";
|
|
@@ -75,14 +132,40 @@ const WEBVIEW_BRIDGE_ID = "@apps-in-toss/webview-bridge";
|
|
|
75
132
|
const MCP_STATE_PATH = "/api/ait-devtools/state";
|
|
76
133
|
/** Browser runtime opt-in consumed by the panel's state-sync helper. */
|
|
77
134
|
const MCP_ENABLE_SNIPPET = "globalThis.__AIT_DEVTOOLS_MCP_ENABLED__ = true;";
|
|
135
|
+
/**
|
|
136
|
+
* Resolves the effective tunnel option (#425).
|
|
137
|
+
*
|
|
138
|
+
* An explicit `tunnel` value (including `false`) always takes priority over
|
|
139
|
+
* env vars — the `??` operator means `undefined` (= omitted) falls through,
|
|
140
|
+
* but `false` / `true` / an object are preserved as-is (non-breaking).
|
|
141
|
+
*
|
|
142
|
+
* When the option is omitted:
|
|
143
|
+
* - `AIT_TUNNEL=1` enables the screen-preview tunnel.
|
|
144
|
+
* - Not set → `false` (disabled).
|
|
145
|
+
*
|
|
146
|
+
* Extracted as a pure function so it can be unit-tested without standing up
|
|
147
|
+
* a full Vite dev server.
|
|
148
|
+
*
|
|
149
|
+
* @param explicit - The `tunnel` option as passed by the consumer (or `undefined` when omitted).
|
|
150
|
+
* @param env - The process environment (injectable for testing).
|
|
151
|
+
*/
|
|
152
|
+
function resolveTunnelOption(explicit, env) {
|
|
153
|
+
return explicit ?? !!env.AIT_TUNNEL;
|
|
154
|
+
}
|
|
78
155
|
const aitDevtoolsPlugin = (0, unplugin.createUnplugin)((options) => {
|
|
79
156
|
const isDev = process.env.NODE_ENV !== "production";
|
|
80
|
-
const shouldEnable = isDev
|
|
157
|
+
const shouldEnable = isDev;
|
|
81
158
|
const shouldMock = shouldEnable && (options?.mock ?? isDev);
|
|
82
159
|
const sdkMajor = options?.sdkVersion === "2" || options?.sdkVersion === "3" ? options.sdkVersion : detectInstalledSdkMajor() ?? "3";
|
|
83
160
|
const shouldPanel = shouldEnable && (options?.panel ?? true);
|
|
84
161
|
const shouldMcp = shouldEnable && (options?.mcp ?? false);
|
|
85
162
|
let lastState = null;
|
|
163
|
+
const tunnelOpt = resolveTunnelOption(options?.tunnel, process.env);
|
|
164
|
+
const shouldTunnel = isDev && !!tunnelOpt;
|
|
165
|
+
const webViewType = options?.webViewType ?? "partner";
|
|
166
|
+
const navBarTransparent = options?.navBarTransparent;
|
|
167
|
+
const navBarTheme = options?.navBarTheme;
|
|
168
|
+
const tunnelConfig = typeof tunnelOpt === "object" ? tunnelOpt : {};
|
|
86
169
|
return {
|
|
87
170
|
name: "ait-co-devtools",
|
|
88
171
|
enforce: "pre",
|
|
@@ -97,7 +180,7 @@ const aitDevtoolsPlugin = (0, unplugin.createUnplugin)((options) => {
|
|
|
97
180
|
},
|
|
98
181
|
transformInclude(id) {
|
|
99
182
|
if (!shouldPanel && !shouldMcp) return false;
|
|
100
|
-
return /\.(tsx?|jsx?)$/.test(id) && (
|
|
183
|
+
return /\.(tsx?|jsx?)$/.test(id) && /\/(main|index|entry|app)\.[tj]sx?$/i.test(id) && !id.includes("node_modules");
|
|
101
184
|
},
|
|
102
185
|
transform(code) {
|
|
103
186
|
let result = code;
|
|
@@ -114,8 +197,12 @@ const aitDevtoolsPlugin = (0, unplugin.createUnplugin)((options) => {
|
|
|
114
197
|
},
|
|
115
198
|
vite: {
|
|
116
199
|
config() {
|
|
117
|
-
|
|
118
|
-
return { define
|
|
200
|
+
const define = { __WEB_VIEW_TYPE__: JSON.stringify(webViewType) };
|
|
201
|
+
if (!shouldTunnel) return { define };
|
|
202
|
+
return {
|
|
203
|
+
define,
|
|
204
|
+
server: { allowedHosts: [".trycloudflare.com"] }
|
|
205
|
+
};
|
|
119
206
|
},
|
|
120
207
|
configureServer(server) {
|
|
121
208
|
if (shouldMcp) server.middlewares.use(MCP_STATE_PATH, (req, res) => {
|
|
@@ -157,6 +244,53 @@ const aitDevtoolsPlugin = (0, unplugin.createUnplugin)((options) => {
|
|
|
157
244
|
res.writeHead(405, { "Content-Type": "application/json" });
|
|
158
245
|
res.end(JSON.stringify({ error: "Method not allowed" }));
|
|
159
246
|
});
|
|
247
|
+
if (shouldTunnel) {
|
|
248
|
+
let tunnel = null;
|
|
249
|
+
let parentWatcher = null;
|
|
250
|
+
const httpServer = server.httpServer;
|
|
251
|
+
httpServer?.once("listening", () => {
|
|
252
|
+
const address = httpServer?.address();
|
|
253
|
+
const port = tunnelConfig.port ?? (address && typeof address === "object" ? address.port : void 0);
|
|
254
|
+
if (!port) {
|
|
255
|
+
console.warn("[@apps-in-toss/devtools] tunnel: could not determine the dev server port; skipping.");
|
|
256
|
+
return;
|
|
257
|
+
}
|
|
258
|
+
Promise.resolve().then(() => require("../tunnel-DtCTOUlp.cjs")).then(async ({ startQuickTunnel, printTunnelBanner }) => {
|
|
259
|
+
const t = await startQuickTunnel(port);
|
|
260
|
+
tunnel = t;
|
|
261
|
+
let tunnelAppName;
|
|
262
|
+
try {
|
|
263
|
+
const { readFileSync } = await import("node:fs");
|
|
264
|
+
const pkgRaw = readFileSync(`${server.config.root}/package.json`, "utf8");
|
|
265
|
+
const pkg = JSON.parse(pkgRaw);
|
|
266
|
+
const rawName = typeof pkg.name === "string" ? pkg.name : "";
|
|
267
|
+
tunnelAppName = (rawName.includes("/") ? rawName.slice(rawName.indexOf("/") + 1) : rawName).trim() || void 0;
|
|
268
|
+
} catch {}
|
|
269
|
+
await printTunnelBanner(t.url, {
|
|
270
|
+
qr: tunnelConfig.qr,
|
|
271
|
+
name: tunnelAppName,
|
|
272
|
+
webViewType,
|
|
273
|
+
navBarTransparent,
|
|
274
|
+
navBarTheme
|
|
275
|
+
});
|
|
276
|
+
parentWatcher = startParentWatcher(() => {
|
|
277
|
+
cleanup();
|
|
278
|
+
process.exit(0);
|
|
279
|
+
});
|
|
280
|
+
}).catch((err) => {
|
|
281
|
+
console.warn(`[@apps-in-toss/devtools] tunnel failed to start: ${err instanceof Error ? err.message : String(err)}`);
|
|
282
|
+
});
|
|
283
|
+
});
|
|
284
|
+
const cleanup = () => {
|
|
285
|
+
parentWatcher?.stop();
|
|
286
|
+
tunnel?.stop();
|
|
287
|
+
};
|
|
288
|
+
httpServer?.once("close", cleanup);
|
|
289
|
+
process.once("SIGINT", cleanup);
|
|
290
|
+
process.once("SIGTERM", cleanup);
|
|
291
|
+
process.once("SIGHUP", cleanup);
|
|
292
|
+
process.once("exit", cleanup);
|
|
293
|
+
}
|
|
160
294
|
}
|
|
161
295
|
}
|
|
162
296
|
};
|
|
@@ -171,6 +305,7 @@ const aitDevtools = aitDevtoolsPlugin;
|
|
|
171
305
|
exports.default = aitDevtools;
|
|
172
306
|
exports.detectInstalledSdkMajor = detectInstalledSdkMajor;
|
|
173
307
|
exports.esbuild = esbuild;
|
|
308
|
+
exports.resolveTunnelOption = resolveTunnelOption;
|
|
174
309
|
exports.rollup = rollup;
|
|
175
310
|
exports.rspack = rspack;
|
|
176
311
|
exports.vite = vite;
|