@prmichaelsen/acp-visualizer 0.13.1 → 0.13.2
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/lib/yaml-loader.ts +3 -2
package/package.json
CHANGED
package/src/lib/yaml-loader.ts
CHANGED
|
@@ -217,8 +217,9 @@ function normalizeTasks(raw: unknown, milestones: Milestone[]): Record<string, T
|
|
|
217
217
|
// The task key might be the milestone ID itself, or "milestone_N"
|
|
218
218
|
keyToMilestoneId.set(m.id, m.id)
|
|
219
219
|
keyToMilestoneId.set(m.id.toLowerCase(), m.id)
|
|
220
|
-
|
|
221
|
-
//
|
|
220
|
+
// Map "milestone_N" where N matches the numeric part of the milestone ID (e.g. M1 → milestone_1)
|
|
221
|
+
// NOTE: Do NOT use array index (i+1) here — milestones may be out of order in the YAML,
|
|
222
|
+
// so array position does not reliably correspond to milestone number.
|
|
222
223
|
const numMatch = m.id.match(/(\d+)/)
|
|
223
224
|
if (numMatch) {
|
|
224
225
|
keyToMilestoneId.set(`milestone_${numMatch[1]}`, m.id)
|