@tryarcanist/cli 0.1.104 → 0.1.105
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/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -652,6 +652,9 @@ var TERMINAL_PHASES = new Set(TERMINAL_PHASES_ARRAY);
|
|
|
652
652
|
var TERMINAL_FOR_FALLBACK_POLLING_PHASES = new Set(
|
|
653
653
|
TERMINAL_PHASES_ARRAY.filter((phase) => phase !== "completed")
|
|
654
654
|
);
|
|
655
|
+
var CHILD_SLOT_RELEASE_PHASES = new Set(
|
|
656
|
+
TERMINAL_PHASES_ARRAY.filter((phase) => phase !== "stopped")
|
|
657
|
+
);
|
|
655
658
|
function isTerminalPhase(phase, sessionKind) {
|
|
656
659
|
if (TERMINAL_PHASES.has(phase)) return true;
|
|
657
660
|
return phase === "idle" && !isRepoSession(sessionKind);
|