kantban-cli 0.1.23 → 0.1.24
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-TEE6GBNZ.js");
|
|
35
35
|
await stopPipeline(args.slice(1));
|
|
36
36
|
} else {
|
|
37
|
-
const { runPipeline } = await import("./pipeline-
|
|
37
|
+
const { runPipeline } = await import("./pipeline-TEE6GBNZ.js");
|
|
38
38
|
await runPipeline(client, args);
|
|
39
39
|
}
|
|
40
40
|
break;
|
|
@@ -913,6 +913,7 @@ var PipelineOrchestrator = class {
|
|
|
913
913
|
* Handle a pipeline event (typically from WebSocket via EventQueue).
|
|
914
914
|
*/
|
|
915
915
|
async handleEvent(event) {
|
|
916
|
+
await this.refreshBoardScope();
|
|
916
917
|
switch (event.type) {
|
|
917
918
|
case "ticket:moved":
|
|
918
919
|
case "ticket:created": {
|
|
@@ -4389,4 +4390,4 @@ export {
|
|
|
4389
4390
|
runPipeline,
|
|
4390
4391
|
stopPipeline
|
|
4391
4392
|
};
|
|
4392
|
-
//# sourceMappingURL=pipeline-
|
|
4393
|
+
//# sourceMappingURL=pipeline-TEE6GBNZ.js.map
|