(filePath: string)
| 125 | |
| 126 | /** Parse a single bump file from disk */ |
| 127 | export async function parseBumpFileFromPath(filePath: string): Promise<BumpFileParseResult> { |
| 128 | const content = await readText(filePath); |
| 129 | return parseBumpFile(content, fileToId(filePath)); |
| 130 | } |
| 131 | |
| 132 | export interface BumpFileParseResult { |
| 133 | bumpFile: BumpFile | null; |
no test coverage detected
searching dependent graphs…