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