kantban-cli 0.1.46 → 0.1.47
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-SDMNXFPV.js → chunk-O47Q6CNM.js} +2 -2
- package/dist/{chunk-N4ZHMJD7.js → chunk-UKWQ6VUQ.js} +2 -2
- package/dist/{chunk-DAFLEMLK.js → chunk-VDCHOIQI.js} +10 -3
- package/dist/chunk-VDCHOIQI.js.map +1 -0
- package/dist/{cron-QUEYUVIX.js → cron-TLNKEKOW.js} +3 -3
- package/dist/index.js +3 -3
- package/dist/lib/gate-proxy-server.js +2 -2
- package/dist/{pipeline-IT7LJXKA.js → pipeline-EUOOLKHN.js} +19 -5
- package/dist/pipeline-EUOOLKHN.js.map +1 -0
- package/dist/{pipeline-init-IGZZOOLK.js → pipeline-init-AUKPFJYE.js} +5 -2
- package/dist/pipeline-init-AUKPFJYE.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-DAFLEMLK.js.map +0 -1
- package/dist/pipeline-IT7LJXKA.js.map +0 -1
- package/dist/pipeline-init-IGZZOOLK.js.map +0 -1
- /package/dist/{chunk-SDMNXFPV.js.map → chunk-O47Q6CNM.js.map} +0 -0
- /package/dist/{chunk-N4ZHMJD7.js.map → chunk-UKWQ6VUQ.js.map} +0 -0
- /package/dist/{cron-QUEYUVIX.js.map → cron-TLNKEKOW.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runGates
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-O47Q6CNM.js";
|
|
4
4
|
import {
|
|
5
5
|
ClaudeProvider,
|
|
6
6
|
RalphLoop,
|
|
@@ -12,14 +12,15 @@ import {
|
|
|
12
12
|
generateMcpConfig,
|
|
13
13
|
parseJsonFromLlmOutput,
|
|
14
14
|
parseStuckDetectionResponse
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-UKWQ6VUQ.js";
|
|
16
16
|
import {
|
|
17
17
|
LoopCheckpointSchema,
|
|
18
18
|
VerdictSchema,
|
|
19
|
+
findUnmatchedColumnKeys,
|
|
19
20
|
parseGateConfig,
|
|
20
21
|
parseTimeout,
|
|
21
22
|
resolveGatesForColumn
|
|
22
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-VDCHOIQI.js";
|
|
23
24
|
import {
|
|
24
25
|
IS_WINDOWS,
|
|
25
26
|
crossSpawnOptions,
|
|
@@ -550,6 +551,10 @@ var PipelineOrchestrator = class {
|
|
|
550
551
|
get pipelineColumnIds() {
|
|
551
552
|
return Array.from(this.pipelineColumns.keys());
|
|
552
553
|
}
|
|
554
|
+
/** Returns the display names of every column on the board (not just pipeline columns). */
|
|
555
|
+
get allBoardColumnNames() {
|
|
556
|
+
return this.cachedBoardScope?.columns.map((c) => c.name) ?? [];
|
|
557
|
+
}
|
|
553
558
|
/** Returns the total number of active loops. */
|
|
554
559
|
get activeLoopCount() {
|
|
555
560
|
return this.activeLoops.size;
|
|
@@ -4255,7 +4260,7 @@ function waitForConfirmation() {
|
|
|
4255
4260
|
}
|
|
4256
4261
|
async function runPipeline(client, args) {
|
|
4257
4262
|
if (args[0] === "init") {
|
|
4258
|
-
const { runPipelineInit } = await import("./pipeline-init-
|
|
4263
|
+
const { runPipelineInit } = await import("./pipeline-init-AUKPFJYE.js");
|
|
4259
4264
|
await runPipelineInit();
|
|
4260
4265
|
return;
|
|
4261
4266
|
}
|
|
@@ -4720,6 +4725,15 @@ async function runPipeline(client, args) {
|
|
|
4720
4725
|
}
|
|
4721
4726
|
console.log(`Discovered ${String(columnIds.length)} pipeline column(s).`);
|
|
4722
4727
|
logger.orchestrator(`Discovered ${String(columnIds.length)} pipeline columns: ${columnIds.join(", ")}`);
|
|
4728
|
+
const unmatchedKeys = findUnmatchedColumnKeys(gateConfig, orchestrator.allBoardColumnNames);
|
|
4729
|
+
if (unmatchedKeys.length > 0) {
|
|
4730
|
+
console.warn(
|
|
4731
|
+
`[gate-config] Unused column keys in pipeline.gates.yaml: ${unmatchedKeys.join(", ")}.`
|
|
4732
|
+
);
|
|
4733
|
+
console.warn(
|
|
4734
|
+
` No board column name matched (after canonicalization). These overrides will never fire.`
|
|
4735
|
+
);
|
|
4736
|
+
}
|
|
4723
4737
|
if (opts.dryRun) {
|
|
4724
4738
|
console.log("\n--- Dry Run Configuration ---");
|
|
4725
4739
|
console.log(`Board ID: ${opts.boardId}`);
|
|
@@ -4984,4 +4998,4 @@ export {
|
|
|
4984
4998
|
runPipeline,
|
|
4985
4999
|
stopPipeline
|
|
4986
5000
|
};
|
|
4987
|
-
//# sourceMappingURL=pipeline-
|
|
5001
|
+
//# sourceMappingURL=pipeline-EUOOLKHN.js.map
|