(projectPath: string)
| 80 | |
| 81 | /** Get progress details for a graph build currently in progress */ |
| 82 | export function getGraphBuildProgress(projectPath: string): GraphBuildProgress | null { |
| 83 | return graphBuildInProgress.get(path.resolve(projectPath)) ?? null; |
| 84 | } |
| 85 | |
| 86 | /** Get the last completed graph build for a project */ |
| 87 | export function getLastGraphBuildCompleted(projectPath: string): GraphBuildCompleted | null { |
no test coverage detected