@tarcisiopgs/lisa 1.23.0 → 1.23.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/index.js +3 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7149,11 +7149,9 @@ async function runLoop(config2, opts) {
|
|
|
7149
7149
|
const activeIssueIds = new Set(allIssues.map((i) => i.id));
|
|
7150
7150
|
if (opts.initialCards) {
|
|
7151
7151
|
for (const card of opts.initialCards) {
|
|
7152
|
-
if (card.column === "backlog" && (card.
|
|
7153
|
-
|
|
7154
|
-
|
|
7155
|
-
log(`Reconciled ${card.id}: no longer in source queue \u2014 removed from kanban`);
|
|
7156
|
-
}
|
|
7152
|
+
if (card.column === "backlog" && !activeIssueIds.has(card.id)) {
|
|
7153
|
+
kanbanEmitter.emit("issue:reconcile-remove", card.id);
|
|
7154
|
+
log(`Reconciled ${card.id}: no longer in source queue \u2014 removed from kanban`);
|
|
7157
7155
|
}
|
|
7158
7156
|
}
|
|
7159
7157
|
}
|