(workPath: string)
| 146 | * same directories the source-file glob excludes. |
| 147 | */ |
| 148 | export function getCompileAllAppExcludeRegex(workPath: string): string { |
| 149 | const excludedDirs = |
| 150 | COMPILEALL_APP_EXCLUDED_DIRS.map(escapePythonRegex).join('|'); |
| 151 | return `${escapePythonRegex(workPath)}[/\\\\](?:${excludedDirs})(?:[/\\\\]|$)`; |
| 152 | } |
| 153 | |
| 154 | export async function collectAppBytecodeFiles({ |
| 155 | workPath, |
no test coverage detected