@midscene/web 0.21.2 → 0.21.3
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/es/agent.js +6 -1
- package/dist/es/agent.js.map +1 -1
- package/dist/es/bridge-mode-browser.js +3 -3
- package/dist/es/bridge-mode.js +8 -3
- package/dist/es/bridge-mode.js.map +1 -1
- package/dist/es/chrome-extension.js +7 -2
- package/dist/es/chrome-extension.js.map +1 -1
- package/dist/es/index.js +6 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/midscene-playground.js +6 -1
- package/dist/es/midscene-playground.js.map +1 -1
- package/dist/es/playground.js +6 -1
- package/dist/es/playground.js.map +1 -1
- package/dist/es/playwright.js +6 -1
- package/dist/es/playwright.js.map +1 -1
- package/dist/es/puppeteer-agent-launcher.js +6 -1
- package/dist/es/puppeteer-agent-launcher.js.map +1 -1
- package/dist/es/puppeteer.js +6 -1
- package/dist/es/puppeteer.js.map +1 -1
- package/dist/lib/agent.js +6 -1
- package/dist/lib/agent.js.map +1 -1
- package/dist/lib/bridge-mode-browser.js +3 -3
- package/dist/lib/bridge-mode.js +8 -3
- package/dist/lib/bridge-mode.js.map +1 -1
- package/dist/lib/chrome-extension.js +7 -2
- package/dist/lib/chrome-extension.js.map +1 -1
- package/dist/lib/index.js +6 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/midscene-playground.js +6 -1
- package/dist/lib/midscene-playground.js.map +1 -1
- package/dist/lib/playground.js +6 -1
- package/dist/lib/playground.js.map +1 -1
- package/dist/lib/playwright.js +6 -1
- package/dist/lib/playwright.js.map +1 -1
- package/dist/lib/puppeteer-agent-launcher.js +6 -1
- package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
- package/dist/lib/puppeteer.js +6 -1
- package/dist/lib/puppeteer.js.map +1 -1
- package/package.json +3 -3
|
@@ -70,7 +70,7 @@ import yaml from "js-yaml";
|
|
|
70
70
|
import semver from "semver";
|
|
71
71
|
|
|
72
72
|
// package.json
|
|
73
|
-
var version = "0.21.
|
|
73
|
+
var version = "0.21.3";
|
|
74
74
|
|
|
75
75
|
// src/common/task-cache.ts
|
|
76
76
|
var debug = getDebug("cache");
|
|
@@ -2515,6 +2515,11 @@ ${errors}`);
|
|
|
2515
2515
|
tasks: [task]
|
|
2516
2516
|
};
|
|
2517
2517
|
this.appendExecutionDump(executionDump);
|
|
2518
|
+
try {
|
|
2519
|
+
this.onDumpUpdate?.(this.dumpDataString());
|
|
2520
|
+
} catch (error) {
|
|
2521
|
+
console.error("Failed to update dump", error);
|
|
2522
|
+
}
|
|
2518
2523
|
this.writeOutActionDumps();
|
|
2519
2524
|
}
|
|
2520
2525
|
_unstableLogContent() {
|
|
@@ -2755,7 +2760,7 @@ function sleep2(ms) {
|
|
|
2755
2760
|
var ChromeExtensionProxyPage = class {
|
|
2756
2761
|
constructor(forceSameTabNavigation) {
|
|
2757
2762
|
this.pageType = "chrome-extension-proxy";
|
|
2758
|
-
this.version = "0.21.
|
|
2763
|
+
this.version = "0.21.3";
|
|
2759
2764
|
this.activeTabId = null;
|
|
2760
2765
|
this.tabIdOfDebuggerAttached = null;
|
|
2761
2766
|
this.attachingDebugger = null;
|