kantban-cli 0.1.43 → 0.1.44
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
CHANGED
|
@@ -31,10 +31,10 @@ async function main() {
|
|
|
31
31
|
}
|
|
32
32
|
case "pipeline": {
|
|
33
33
|
if (args[0] === "stop") {
|
|
34
|
-
const { stopPipeline } = await import("./pipeline-
|
|
34
|
+
const { stopPipeline } = await import("./pipeline-GOM4OKNV.js");
|
|
35
35
|
await stopPipeline(args.slice(1));
|
|
36
36
|
} else {
|
|
37
|
-
const { runPipeline } = await import("./pipeline-
|
|
37
|
+
const { runPipeline } = await import("./pipeline-GOM4OKNV.js");
|
|
38
38
|
await runPipeline(client, args);
|
|
39
39
|
}
|
|
40
40
|
break;
|
|
@@ -4343,7 +4343,7 @@ async function runPipeline(client, args) {
|
|
|
4343
4343
|
effectiveConfig.model = registry.resolveModel(columnProvider, effectiveConfig.model);
|
|
4344
4344
|
}
|
|
4345
4345
|
const columnGates = resolveGatesForColumn(gateConfig, resolvedColumnName);
|
|
4346
|
-
const gateCwd = effectiveConfig.worktreeName ? join3(process.cwd(), effectiveConfig.worktreeName) : process.cwd();
|
|
4346
|
+
const gateCwd = effectiveConfig.worktreePath ?? (effectiveConfig.worktreeName ? join3(process.cwd(), effectiveConfig.worktreeName) : process.cwd());
|
|
4347
4347
|
const effectiveMcpConfigPath = columnGates.length > 0 ? generateGateProxyMcpConfig(
|
|
4348
4348
|
client.baseUrl,
|
|
4349
4349
|
client.token,
|
|
@@ -4984,4 +4984,4 @@ export {
|
|
|
4984
4984
|
runPipeline,
|
|
4985
4985
|
stopPipeline
|
|
4986
4986
|
};
|
|
4987
|
-
//# sourceMappingURL=pipeline-
|
|
4987
|
+
//# sourceMappingURL=pipeline-GOM4OKNV.js.map
|