(localPath: string)
| 138 | } |
| 139 | |
| 140 | async function writeSource(localPath: string): Promise<void> { |
| 141 | const path = join(sourceRoot, localPath); |
| 142 | await mkdir(dirname(path), { recursive: true }); |
| 143 | await writeFile(path, 'export const value = 1;\n'); |
| 144 | } |
| 145 | }); |