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