| 16 | } |
| 17 | |
| 18 | interface SetupFile { |
| 19 | filePath: string; |
| 20 | content: string; |
| 21 | mode?: number; |
| 22 | } |
| 23 | |
| 24 | export function scaffoldProject(basePath: string, files: SetupFile[]) { |
| 25 | for (const { filePath, content, mode } of files) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…