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

Function getWeeklyCommits

scripts/changelog-weekly.ts:167–175  ·  view source on GitHub ↗
(options: WeeklyOptions)

Source from the content-addressed store, hash-verified

165}
166
167function getWeeklyCommits(options: WeeklyOptions): WeeklyCommit[] {
168 return getCommits(options.from, options.to)
169 .filter((commit) => !shouldSkipCommit(commit))
170 .map((commit) => ({
171 ...parseCommit(commit),
172 date: commit.date,
173 }))
174 .sort(compareCommitsForDigest);
175}
176
177type RawWeeklyCommit = RawCommit & {
178 date: string;

Callers 1

mainFunction · 0.85

Calls 3

shouldSkipCommitFunction · 0.90
parseCommitFunction · 0.90
getCommitsFunction · 0.70

Tested by

no test coverage detected