Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Sources/SwiftPMBuildServer/SwiftPMBuildServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ public actor SwiftPMBuildServer: QueueBasedMessageHandler {
case is OnBuildLogMessageNotification:
// If we receive a build log message notification, forward it on to the client
connectionToClient.send(notification)
case is OnBuildTargetDidChangeNotification:
// If the underlying server notifies us of target updates, forward the notification to the client
connectionToClient.send(notification)
default:
logToClient(.warning, "SwiftPM build server received unknown notification type: \(notification)")
}
Expand Down
Loading