* Check if a task is blocked by dependencies (status-aware) * Only returns true if the task has blocking dependencies that are NOT completed
(taskPath: string)
| 643 | * Only returns true if the task has blocking dependencies that are NOT completed |
| 644 | */ |
| 645 | isTaskBlocked(taskPath: string): boolean { |
| 646 | if (!this.indexesBuilt) { |
| 647 | this.buildIndexesSync(); |
| 648 | } |
| 649 | return (this.activeDependencySources.get(taskPath)?.size ?? 0) > 0; |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * Get tasks referencing a project |
nothing calls this directly
no test coverage detected