MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / renderAlsoNotable

Function renderAlsoNotable

scripts/changelog-weekly.ts:386–395  ·  view source on GitHub ↗
(
  commits: WeeklyCommit[],
  renderBullet: (commit: WeeklyCommit) => string,
)

Source from the content-addressed store, hash-verified

384}
385
386function renderAlsoNotable(
387 commits: WeeklyCommit[],
388 renderBullet: (commit: WeeklyCommit) => string,
389) {
390 if (commits.length === 0) {
391 return "## Also notable\n\n- TODO: add any supporting changes worth mentioning.";
392 }
393
394 return ["## Also notable", "", commits.map(renderBullet).join("\n")].join("\n");
395}
396
397function renderGroupedChanges(
398 commits: WeeklyCommit[],

Callers 1

renderDocsUpdateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected