(filePath: string)
| 323 | } |
| 324 | |
| 325 | function fileToId(filePath: string): string { |
| 326 | const base = filePath.split('/').pop()!; |
| 327 | return base.replace(/\.md$/, ''); |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Given a list of changed file paths (relative to root), extract the IDs |
no outgoing calls
no test coverage detected
searching dependent graphs…