( project: string, extractProjectFilePath?: (project: string) => string )
| 155 | } |
| 156 | |
| 157 | function getProjectFilePath( |
| 158 | project: string, |
| 159 | extractProjectFilePath?: (project: string) => string |
| 160 | ): string { |
| 161 | const rawPath = extractProjectFilePath |
| 162 | ? extractProjectFilePath(project) |
| 163 | : parseProjectFilePath(project); |
| 164 | return sanitizeProjectFilePath(rawPath); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Process a folder path template by replacing template variables with actual values |
no test coverage detected