(subdir: string, filename: string)
| 71 | } |
| 72 | |
| 73 | async function read(subdir: string, filename: string): Promise<LatestYml | undefined> { |
| 74 | const file = Bun.file(path.join(dir, subdir, filename)) |
| 75 | if (!(await file.exists())) return undefined |
| 76 | return parse(await file.text()) |
| 77 | } |
| 78 | |
| 79 | const output: Record<string, string> = {} |
| 80 |
no test coverage detected