(filePath: string, content: string)
| 10 | } |
| 11 | |
| 12 | export async function writeText(filePath: string, content: string) { |
| 13 | await mkdir(path.dirname(filePath), { recursive: true }) |
| 14 | await Bun.write(filePath, content) |
| 15 | } |
| 16 | |
| 17 | export async function appendText(filePath: string, content: string) { |
| 18 | await mkdir(path.dirname(filePath), { recursive: true }) |
no test coverage detected