(outputPath: string, contents: string)
| 32 | await copyFile(sourcePath, outputPath); |
| 33 | }, |
| 34 | async writeFile(outputPath: string, contents: string): Promise<void> { |
| 35 | await writeFile(outputPath, contents); |
| 36 | } |
| 37 | }; |
| 38 | |
| 39 | export async function create(effects: CreateEffects = defaultEffects): Promise<void> { |
no outgoing calls
no test coverage detected