(filePath: string, content: string)
| 31 | } |
| 32 | |
| 33 | async function writeFormatted(filePath: string, content: string) { |
| 34 | await Deno.writeTextFile(filePath, content); |
| 35 | await format(filePath); |
| 36 | } |
| 37 | |
| 38 | async function updateDenoJson( |
| 39 | dir: string, |
no test coverage detected