(projectPath: string)
| 75 | |
| 76 | /** Check if a graph build is currently in progress for a project */ |
| 77 | export function isGraphBuildInProgress(projectPath: string): boolean { |
| 78 | return graphBuildInProgress.has(path.resolve(projectPath)); |
| 79 | } |
| 80 | |
| 81 | /** Get progress details for a graph build currently in progress */ |
| 82 | export function getGraphBuildProgress(projectPath: string): GraphBuildProgress | null { |
no test coverage detected