@swmansion/argent 0.25.1-next.10 → 0.25.1-next.11
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/cli-cmds.mjs +1 -1
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +10 -7
- package/package.json +1 -1
package/dist/cli-cmds.mjs
CHANGED
|
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21857
21857
|
var SESSION_ID2 = randomUUID5();
|
|
21858
21858
|
function readCliVersion() {
|
|
21859
21859
|
if (true) {
|
|
21860
|
-
return "0.25.1-next.
|
|
21860
|
+
return "0.25.1-next.11";
|
|
21861
21861
|
}
|
|
21862
21862
|
return "0.0.0";
|
|
21863
21863
|
}
|
package/dist/installer.mjs
CHANGED
|
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16710
16710
|
var SESSION_ID = randomUUID4();
|
|
16711
16711
|
function readCliVersion() {
|
|
16712
16712
|
if (true) {
|
|
16713
|
-
return "0.25.1-next.
|
|
16713
|
+
return "0.25.1-next.11";
|
|
16714
16714
|
}
|
|
16715
16715
|
return "0.0.0";
|
|
16716
16716
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -94702,7 +94702,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
94702
94702
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
94703
94703
|
function readCliVersion() {
|
|
94704
94704
|
if (true) {
|
|
94705
|
-
return "0.25.1-next.
|
|
94705
|
+
return "0.25.1-next.11";
|
|
94706
94706
|
}
|
|
94707
94707
|
return "0.0.0";
|
|
94708
94708
|
}
|
|
@@ -108852,12 +108852,15 @@ var CDPClient = class {
|
|
|
108852
108852
|
const timer = setTimeout(() => {
|
|
108853
108853
|
this.pendingBindings.delete(id);
|
|
108854
108854
|
reject(
|
|
108855
|
-
new FailureError(
|
|
108856
|
-
|
|
108857
|
-
|
|
108858
|
-
|
|
108859
|
-
|
|
108860
|
-
|
|
108855
|
+
new FailureError(
|
|
108856
|
+
`Binding response for requestId=${id} timed out \u2014 the runtime took the script but never called back over the binding. It may be paused at a breakpoint (the script is dispatched without awaiting it, so a paused runtime still accepts it and never runs the callback), or frozen. Check the debugger and resume it; if nothing is paused, restart the app. Do not retry in a loop \u2014 each attempt waits out the full timeout.`,
|
|
108857
|
+
{
|
|
108858
|
+
error_code: FAILURE_CODES.DEBUGGER_CDP_BINDING_TIMEOUT,
|
|
108859
|
+
failure_stage: "debugger_cdp_binding",
|
|
108860
|
+
failure_area: "tool_server",
|
|
108861
|
+
error_kind: "timeout"
|
|
108862
|
+
}
|
|
108863
|
+
)
|
|
108861
108864
|
);
|
|
108862
108865
|
}, timeout);
|
|
108863
108866
|
this.pendingBindings.set(id, { resolve: resolve14, reject, timer });
|
package/package.json
CHANGED