@quolu/lattice 0.66.0 → 0.66.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/package.json +1 -1
- package/src/todo-gantt-html.mjs +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quolu/lattice",
|
|
3
|
-
"version": "0.66.
|
|
3
|
+
"version": "0.66.1",
|
|
4
4
|
"description": "Schedulability compiler for multi-agent development: observe real code boundaries, refactor the conflicting seam, recompile the plan for parallel execution",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Quo / クオ at kitepon.dev",
|
package/src/todo-gantt-html.mjs
CHANGED
|
@@ -81,6 +81,8 @@ function normalizeSections(readModel, narratives, anchorOutcomes, noteContexts)
|
|
|
81
81
|
for (const member of readModel.members) {
|
|
82
82
|
const states = new Map(member.tasks.map((state) => [state.task_id, state]));
|
|
83
83
|
for (const task of member.plan.tasks) {
|
|
84
|
+
// retired(恒久除去)は図にも詳細パネルにも出さない。履歴と理由はsnapshot/journalが持つ。
|
|
85
|
+
if (states.get(task.task_id)?.status === 'retired') continue;
|
|
84
86
|
const ref = { project_id: member.plan.project_id, plan_key: member.plan.plan_key, task_id: task.task_id };
|
|
85
87
|
const narrative = supplied.get(refKey(ref));
|
|
86
88
|
const markdown = narrative?.markdown ?? '';
|