(root: string)
| 61 | } |
| 62 | |
| 63 | function writeProjectRoot(root: string) { |
| 64 | mkdirSync(root, { recursive: true }); |
| 65 | mkdirSync(path.join(root, '.git'), { recursive: true }); |
| 66 | } |
| 67 | |
| 68 | function writePackageJson(root: string) { |
| 69 | mkdirSync(root, { recursive: true }); |
no test coverage detected