We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60528e commit 04077a5Copy full SHA for 04077a5
Sources/SwiftPMBuildServer/SwiftPMBuildServer.swift
@@ -165,6 +165,9 @@ public actor SwiftPMBuildServer: QueueBasedMessageHandler {
165
case is OnBuildLogMessageNotification:
166
// If we receive a build log message notification, forward it on to the client
167
connectionToClient.send(notification)
168
+ case is OnBuildTargetDidChangeNotification:
169
+ // If the underlying server notifies us of target updates, forward the notification to the client
170
+ connectionToClient.send(notification)
171
default:
172
logToClient(.warning, "SwiftPM build server received unknown notification type: \(notification)")
173
}
0 commit comments