nexus-agents 2.30.6 → 2.30.7
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/{chunk-Q52QFWDQ.js → chunk-42FGTDIW.js} +2 -2
- package/dist/{chunk-T7SJVP5R.js → chunk-7GW7ZRJ3.js} +7 -2
- package/dist/{chunk-T7SJVP5R.js.map → chunk-7GW7ZRJ3.js.map} +1 -1
- package/dist/{chunk-MD2ABS6R.js → chunk-WGP6G6QU.js} +3 -3
- package/dist/cli.js +14 -14
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/{setup-command-JVFJWD7A.js → setup-command-SP43B2UM.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-Q52QFWDQ.js.map → chunk-42FGTDIW.js.map} +0 -0
- /package/dist/{chunk-MD2ABS6R.js.map → chunk-WGP6G6QU.js.map} +0 -0
- /package/dist/{setup-command-JVFJWD7A.js.map → setup-command-SP43B2UM.js.map} +0 -0
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
VERSION,
|
|
6
6
|
initDataDirectories
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-WGP6G6QU.js";
|
|
8
8
|
import {
|
|
9
9
|
CLI_SUBPROCESS_TIMEOUTS,
|
|
10
10
|
createLogger,
|
|
@@ -1523,4 +1523,4 @@ export {
|
|
|
1523
1523
|
setupCommand,
|
|
1524
1524
|
setupCommandAsync
|
|
1525
1525
|
};
|
|
1526
|
-
//# sourceMappingURL=chunk-
|
|
1526
|
+
//# sourceMappingURL=chunk-42FGTDIW.js.map
|
|
@@ -65,7 +65,7 @@ import {
|
|
|
65
65
|
import {
|
|
66
66
|
DEFAULT_TASK_TTL_MS,
|
|
67
67
|
clampTaskTtl
|
|
68
|
-
} from "./chunk-
|
|
68
|
+
} from "./chunk-WGP6G6QU.js";
|
|
69
69
|
import {
|
|
70
70
|
createSessionMemory
|
|
71
71
|
} from "./chunk-ZXIFNJ7Q.js";
|
|
@@ -20756,6 +20756,10 @@ function cleanupExecution(state) {
|
|
|
20756
20756
|
clearTimeout(state.timeoutId);
|
|
20757
20757
|
}
|
|
20758
20758
|
state.queue.cancel();
|
|
20759
|
+
if (state.abortCleanup !== void 0) {
|
|
20760
|
+
state.abortCleanup.signal.removeEventListener("abort", state.abortCleanup.handler);
|
|
20761
|
+
delete state.abortCleanup;
|
|
20762
|
+
}
|
|
20759
20763
|
}
|
|
20760
20764
|
function sortResultsByStepOrder(results, steps) {
|
|
20761
20765
|
const stepOrder = new Map(steps.map((s, i) => [s.id, i]));
|
|
@@ -20779,6 +20783,7 @@ async function executeParallel(steps, context, stepExecutor, options) {
|
|
|
20779
20783
|
};
|
|
20780
20784
|
if (context.signal !== void 0) {
|
|
20781
20785
|
context.signal.addEventListener("abort", abortHandler);
|
|
20786
|
+
state.abortCleanup = { signal: context.signal, handler: abortHandler };
|
|
20782
20787
|
}
|
|
20783
20788
|
try {
|
|
20784
20789
|
setupOverallTimeout(state, opts);
|
|
@@ -53163,4 +53168,4 @@ export {
|
|
|
53163
53168
|
detectBackend,
|
|
53164
53169
|
createTaskTracker
|
|
53165
53170
|
};
|
|
53166
|
-
//# sourceMappingURL=chunk-
|
|
53171
|
+
//# sourceMappingURL=chunk-7GW7ZRJ3.js.map
|