(rootDir: string, ids: string[])
| 316 | |
| 317 | /** Delete consumed bump files */ |
| 318 | export async function deleteBumpFiles(rootDir: string, ids: string[]): Promise<void> { |
| 319 | const dir = getBumpyDir(rootDir); |
| 320 | for (const id of ids) { |
| 321 | await removeFile(resolve(dir, `${id}.md`)); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | function fileToId(filePath: string): string { |
| 326 | const base = filePath.split('/').pop()!; |
nothing calls this directly
no test coverage detected
searching dependent graphs…