Skip to content

Commit b01ae2a

Browse files
committed
Add Task{Start|Progress|Finish}Notification to BuildSystemMessageDependencyTracker
1 parent c23b4ff commit b01ae2a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Sources/BuildSystemIntegration/BuildSystemMessageDependencyTracker.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ package enum BuildSystemMessageDependencyTracker: QueueBasedMessageHandlerDepend
6565
self = .stateChange
6666
case is OnWatchedFilesDidChangeNotification:
6767
self = .stateChange
68+
case is TaskFinishNotification:
69+
self = .taskProgress
70+
case is TaskProgressNotification:
71+
self = .taskProgress
72+
case is TaskStartNotification:
73+
self = .taskProgress
6874
default:
6975
logger.error(
7076
"""

0 commit comments

Comments
 (0)