@tarcisiopgs/lisa 1.33.0 → 1.33.1
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-23Z5BBRT.js → chunk-G76CXPYT.js} +4 -2
- package/dist/{chunk-6XC7GQUI.js → chunk-MAT63YLV.js} +2 -2
- package/dist/{chunk-XLAY4P45.js → chunk-PPRXJHPW.js} +5 -0
- package/dist/{chunk-SC222P5D.js → chunk-TFSN45HD.js} +1 -1
- package/dist/index.js +8 -8
- package/dist/{kanban-X4OR4ZFI.js → kanban-MKRXRMTL.js} +1 -1
- package/dist/{loop-XEJHKZHO.js → loop-XJOZ4H54.js} +3 -3
- package/dist/{tui-bridge-G6BBFZFH.js → tui-bridge-XTNCKLXF.js} +3 -3
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
resolveModels,
|
|
31
31
|
runValidationCommands,
|
|
32
32
|
runWithFallback
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-TFSN45HD.js";
|
|
34
34
|
import {
|
|
35
35
|
divider,
|
|
36
36
|
error,
|
|
@@ -39,7 +39,7 @@ import {
|
|
|
39
39
|
log,
|
|
40
40
|
ok,
|
|
41
41
|
warn
|
|
42
|
-
} from "./chunk-
|
|
42
|
+
} from "./chunk-PPRXJHPW.js";
|
|
43
43
|
import {
|
|
44
44
|
appendRawEntry,
|
|
45
45
|
migrateGuardrails
|
|
@@ -1109,6 +1109,8 @@ async function refreshKanban(source, config) {
|
|
|
1109
1109
|
for (const issue of allIssues) {
|
|
1110
1110
|
kanbanEmitter.emit("issue:queued", issue);
|
|
1111
1111
|
}
|
|
1112
|
+
const sourceIds = new Set(allIssues.map((i) => i.id));
|
|
1113
|
+
kanbanEmitter.emit("kanban:reconcile-backlog", sourceIds);
|
|
1112
1114
|
} catch {
|
|
1113
1115
|
}
|
|
1114
1116
|
}
|
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
readContext,
|
|
5
5
|
resolveModels,
|
|
6
6
|
runWithFallback
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-TFSN45HD.js";
|
|
8
8
|
import {
|
|
9
9
|
error,
|
|
10
10
|
log,
|
|
11
11
|
normalizeLabels,
|
|
12
12
|
ok,
|
|
13
13
|
warn
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-PPRXJHPW.js";
|
|
15
15
|
|
|
16
16
|
// src/cli/error.ts
|
|
17
17
|
var CliError = class extends Error {
|
|
@@ -921,6 +921,9 @@ function useKanbanState(bellEnabled, initialCards = []) {
|
|
|
921
921
|
outputBuffer.delete(issueId);
|
|
922
922
|
setCards((prev) => prev.filter((c) => c.id !== issueId));
|
|
923
923
|
};
|
|
924
|
+
const onReconcileBacklog = (sourceIds) => {
|
|
925
|
+
setCards((prev) => prev.filter((c) => c.column !== "backlog" || sourceIds.has(c.id)));
|
|
926
|
+
};
|
|
924
927
|
kanbanEmitter.on("issue:queued", onQueued);
|
|
925
928
|
kanbanEmitter.on("issue:started", onStarted);
|
|
926
929
|
kanbanEmitter.on("issue:done", onDone);
|
|
@@ -929,6 +932,7 @@ function useKanbanState(bellEnabled, initialCards = []) {
|
|
|
929
932
|
kanbanEmitter.on("issue:skipped", onSkipped);
|
|
930
933
|
kanbanEmitter.on("issue:killed", onKilled);
|
|
931
934
|
kanbanEmitter.on("issue:reconcile-remove", onReconcileRemove);
|
|
935
|
+
kanbanEmitter.on("kanban:reconcile-backlog", onReconcileBacklog);
|
|
932
936
|
kanbanEmitter.on("provider:paused", onProviderPaused);
|
|
933
937
|
kanbanEmitter.on("provider:resumed", onProviderResumed);
|
|
934
938
|
kanbanEmitter.on("issue:log-file", onLogFile);
|
|
@@ -973,6 +977,7 @@ function useKanbanState(bellEnabled, initialCards = []) {
|
|
|
973
977
|
kanbanEmitter.off("issue:skipped", onSkipped);
|
|
974
978
|
kanbanEmitter.off("issue:killed", onKilled);
|
|
975
979
|
kanbanEmitter.off("issue:reconcile-remove", onReconcileRemove);
|
|
980
|
+
kanbanEmitter.off("kanban:reconcile-backlog", onReconcileBacklog);
|
|
976
981
|
kanbanEmitter.off("provider:paused", onProviderPaused);
|
|
977
982
|
kanbanEmitter.off("provider:resumed", onProviderResumed);
|
|
978
983
|
kanbanEmitter.off("issue:log-file", onLogFile);
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
parseStructuredOutput,
|
|
8
8
|
runPlanWizard,
|
|
9
9
|
savePlan
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-MAT63YLV.js";
|
|
11
11
|
import {
|
|
12
12
|
detectDefaultBranch,
|
|
13
13
|
detectGitRepos,
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
runLoop,
|
|
37
37
|
saveConfig,
|
|
38
38
|
validateConfig
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-G76CXPYT.js";
|
|
40
40
|
import {
|
|
41
41
|
buildContextMdBlock,
|
|
42
42
|
createProvider,
|
|
@@ -48,7 +48,7 @@ import {
|
|
|
48
48
|
readContext,
|
|
49
49
|
resolveModels,
|
|
50
50
|
runWithFallback
|
|
51
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-TFSN45HD.js";
|
|
52
52
|
import {
|
|
53
53
|
banner,
|
|
54
54
|
error,
|
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
setLogLevel,
|
|
59
59
|
setOutputMode,
|
|
60
60
|
updateNotice
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-PPRXJHPW.js";
|
|
62
62
|
import "./chunk-3EOEDL3T.js";
|
|
63
63
|
import {
|
|
64
64
|
getKanbanStatePath,
|
|
@@ -1544,7 +1544,7 @@ async function reviewAndCreate(plan2, planPath, opts) {
|
|
|
1544
1544
|
log("Run `lisa run` when ready.");
|
|
1545
1545
|
return;
|
|
1546
1546
|
}
|
|
1547
|
-
const { runLoop: runLoop2 } = await import("./loop-
|
|
1547
|
+
const { runLoop: runLoop2 } = await import("./loop-XJOZ4H54.js");
|
|
1548
1548
|
await runLoop2(config2, {
|
|
1549
1549
|
once: false,
|
|
1550
1550
|
watch: false,
|
|
@@ -1908,7 +1908,7 @@ async function executeRun(args) {
|
|
|
1908
1908
|
if (isTTY) {
|
|
1909
1909
|
const { render } = await import("ink");
|
|
1910
1910
|
const { createElement } = await import("react");
|
|
1911
|
-
const { KanbanApp } = await import("./kanban-
|
|
1911
|
+
const { KanbanApp } = await import("./kanban-MKRXRMTL.js");
|
|
1912
1912
|
const demoConfig = {
|
|
1913
1913
|
provider: "claude",
|
|
1914
1914
|
source: "linear",
|
|
@@ -2008,7 +2008,7 @@ Add them to your ${shell} and run: source ${shell}`));
|
|
|
2008
2008
|
const initialCards = persistence.load();
|
|
2009
2009
|
persistedCards = initialCards;
|
|
2010
2010
|
persistence.start();
|
|
2011
|
-
const { registerPlanBridge } = await import("./tui-bridge-
|
|
2011
|
+
const { registerPlanBridge } = await import("./tui-bridge-XTNCKLXF.js");
|
|
2012
2012
|
const cleanupPlan = registerPlanBridge(merged);
|
|
2013
2013
|
onBeforeExit = () => {
|
|
2014
2014
|
persistence.stop();
|
|
@@ -2016,7 +2016,7 @@ Add them to your ${shell} and run: source ${shell}`));
|
|
|
2016
2016
|
};
|
|
2017
2017
|
const { render } = await import("ink");
|
|
2018
2018
|
const { createElement } = await import("react");
|
|
2019
|
-
const { KanbanApp } = await import("./kanban-
|
|
2019
|
+
const { KanbanApp } = await import("./kanban-MKRXRMTL.js");
|
|
2020
2020
|
render(createElement(KanbanApp, { config: merged, initialCards }), { exitOnCtrlC: false });
|
|
2021
2021
|
}
|
|
2022
2022
|
await runLoop(merged, {
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
checkoutBaseBranches,
|
|
4
4
|
runDemoLoop,
|
|
5
5
|
runLoop
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-G76CXPYT.js";
|
|
7
7
|
import {
|
|
8
8
|
WATCH_POLL_INTERVAL_MS
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-TFSN45HD.js";
|
|
10
|
+
import "./chunk-PPRXJHPW.js";
|
|
11
11
|
import "./chunk-3EOEDL3T.js";
|
|
12
12
|
import "./chunk-7OCDGYDM.js";
|
|
13
13
|
import "./chunk-72CYGBT4.js";
|
|
@@ -6,19 +6,19 @@ import {
|
|
|
6
6
|
markdownToIssue,
|
|
7
7
|
parseStructuredOutput,
|
|
8
8
|
savePlan
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-MAT63YLV.js";
|
|
10
10
|
import {
|
|
11
11
|
createSource,
|
|
12
12
|
resolveModels,
|
|
13
13
|
runWithFallback
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-TFSN45HD.js";
|
|
15
15
|
import {
|
|
16
16
|
error,
|
|
17
17
|
kanbanEmitter,
|
|
18
18
|
log,
|
|
19
19
|
ok,
|
|
20
20
|
warn
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-PPRXJHPW.js";
|
|
22
22
|
import "./chunk-3EOEDL3T.js";
|
|
23
23
|
import "./chunk-7OCDGYDM.js";
|
|
24
24
|
import "./chunk-72CYGBT4.js";
|