@xbrowser/cli 1.25.2 → 1.27.0
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/dist/{browser-L3TUDYY3.js → browser-4IYIHZ6R.js} +3 -3
- package/dist/{browser-33QQWEDI.js → browser-NYYCR4O7.js} +2 -2
- package/dist/{browser-4LOJSMWV.js → browser-ZD53IMUJ.js} +3 -3
- package/dist/{cdp-driver-BYW7WY7E.js → cdp-driver-4X6Q62WI.js} +2 -2
- package/dist/{cdp-driver-5YVI5AIS.js → cdp-driver-EFEW4ZEN.js} +2 -2
- package/dist/{cdp-driver-MEK5EDEK.js → cdp-driver-HB744QB4.js} +3 -3
- package/dist/{chunk-ZOYM7QMS.js → chunk-3PUOISKE.js} +1 -1
- package/dist/{chunk-2EEAXSBA.js → chunk-HSYRAV3H.js} +3 -3
- package/dist/{chunk-DRKL2RFQ.js → chunk-IDXOIXQR.js} +320 -144
- package/dist/{chunk-U6GFDVNI.js → chunk-J3HXZVSN.js} +3 -3
- package/dist/{chunk-NNI5RT4A.js → chunk-KECYFWJO.js} +1 -1
- package/dist/{chunk-CGNHGAIJ.js → chunk-ME5FO5YV.js} +3 -3
- package/dist/{chunk-MYH6FIBZ.js → chunk-SEEWE5SJ.js} +5 -1
- package/dist/{chunk-VCVDILH6.js → chunk-T2AI24A5.js} +5 -1
- package/dist/{chunk-PO27V5UH.js → chunk-YITK42HZ.js} +320 -144
- package/dist/cli.js +6 -6
- package/dist/daemon-main.js +326 -150
- package/dist/index.js +7 -7
- package/dist/{launcher-LUOMMGZC.js → launcher-SJ44X25U.js} +1 -1
- package/dist/{launcher-IK2FKW6T.js → launcher-XHKIC4GP.js} +1 -1
- package/dist/{server-IBQGNDSB.js → server-WDDGIV3C.js} +147 -4
- package/dist/{server-EZJW6IHU.js → server-YKMRFDEM.js} +146 -3
- package/dist/{session-replayer-PJIUH7KI.js → session-replayer-TXTNTG33.js} +89 -44
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
loadHooks,
|
|
18
18
|
parsePluginParams,
|
|
19
19
|
readJsonFile
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-YITK42HZ.js";
|
|
21
21
|
import "./chunk-JKVUFP3G.js";
|
|
22
22
|
import {
|
|
23
23
|
forwardCommandLog,
|
|
@@ -81,9 +81,9 @@ import {
|
|
|
81
81
|
findSession,
|
|
82
82
|
getAllSessions,
|
|
83
83
|
saveSessionDiskMeta
|
|
84
|
-
} from "./chunk-
|
|
84
|
+
} from "./chunk-HSYRAV3H.js";
|
|
85
85
|
import "./chunk-R3F4K2SB.js";
|
|
86
|
-
import "./chunk-
|
|
86
|
+
import "./chunk-SEEWE5SJ.js";
|
|
87
87
|
import {
|
|
88
88
|
errMsg
|
|
89
89
|
} from "./chunk-GDKLH7ZY.js";
|
|
@@ -6032,7 +6032,7 @@ Run "xbrowser ${command} ${subCommand} --help" to see available parameters.`
|
|
|
6032
6032
|
const targetPage = pages[cmdTabIndex];
|
|
6033
6033
|
await targetPage.bringToFront().catch(() => {
|
|
6034
6034
|
});
|
|
6035
|
-
const { setActivePage } = await import("./browser-
|
|
6035
|
+
const { setActivePage } = await import("./browser-NYYCR4O7.js");
|
|
6036
6036
|
setActivePage(session, targetPage);
|
|
6037
6037
|
}
|
|
6038
6038
|
}
|
|
@@ -6297,7 +6297,7 @@ async function handleRemote(args, options, mode) {
|
|
|
6297
6297
|
}
|
|
6298
6298
|
}
|
|
6299
6299
|
async function startMcpServer() {
|
|
6300
|
-
const { startMcpStdio } = await import("./server-
|
|
6300
|
+
const { startMcpStdio } = await import("./server-YKMRFDEM.js");
|
|
6301
6301
|
startMcpStdio();
|
|
6302
6302
|
}
|
|
6303
6303
|
|
|
@@ -6316,7 +6316,7 @@ async function main() {
|
|
|
6316
6316
|
const command = process.argv[2];
|
|
6317
6317
|
const isLongRunning = command === "preview" || command === "serve" || command === "mcp";
|
|
6318
6318
|
if (!isLongRunning) {
|
|
6319
|
-
const { ensureProcessCanExit } = await import("./browser-
|
|
6319
|
+
const { ensureProcessCanExit } = await import("./browser-NYYCR4O7.js");
|
|
6320
6320
|
await ensureProcessCanExit().catch(() => {
|
|
6321
6321
|
});
|
|
6322
6322
|
process.exit(process.exitCode || exitCode);
|