(dirPath: string)
| 92 | |
| 93 | // Helper function to create directories recursively |
| 94 | async function mkdirRecursive(dirPath: string): Promise<void> { |
| 95 | await mkdir(dirPath, { recursive: true }) |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Symlinks directories from the main repository to avoid duplication. |
no test coverage detected