(sourcePath: string, outputPath: string)
| 29 | await mkdir(outputPath, options); |
| 30 | }, |
| 31 | async copyFile(sourcePath: string, outputPath: string): Promise<void> { |
| 32 | await copyFile(sourcePath, outputPath); |
| 33 | }, |
| 34 | async writeFile(outputPath: string, contents: string): Promise<void> { |
| 35 | await writeFile(outputPath, contents); |
| 36 | } |
no outgoing calls
no test coverage detected