contactsheet 0.1.7 → 0.1.8

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/cli.js CHANGED
@@ -1369,7 +1369,7 @@ async function buildContextText(cfg) {
1369
1369
  for (const a of open) {
1370
1370
  const where = [a.artboardId, a.anchor?.selector].filter(Boolean).join(" @ ");
1371
1371
  lines.push(`- #${a.seq} [${a.id}] ${where ? where + " \u2014\u2014 " : ""}${a.text}`);
1372
- for (const ref of a.refs ?? []) lines.push(` \u53C2\u8003\u56FE:${ref}`);
1372
+ (a.refs ?? []).forEach((ref, i) => lines.push(` \u56FE\u7247 ${i + 1}:${ref}`));
1373
1373
  }
1374
1374
  }
1375
1375
  return lines.join("\n") + "\n";