MCPcopy Index your code
hub / github.com/dmno-dev/bumpy / extractBumpFileIdsFromChangedFiles

Function extractBumpFileIdsFromChangedFiles

packages/bumpy/src/core/bump-file.ts:334–336  ·  view source on GitHub ↗
(changedFiles: string[])

Source from the content-addressed store, hash-verified

332 * of bump files that were added/modified. Shared by `check` and `ci check`.
333 */
334export function extractBumpFileIdsFromChangedFiles(changedFiles: string[]): Set<string> {
335 return new Set(changedFiles.filter((f) => /^\.bumpy\/.*\.md$/.test(f) && !f.endsWith('README.md')).map(fileToId));
336}
337
338/**
339 * Filter bump files to only those added/modified on the current branch.

Callers 2

check.test.tsFile · 0.90
filterBranchBumpFilesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…