This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build ElegantColorPalette with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme ElegantColorPalette -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

 42 |     /// - Parameter frame: The frame rectangle for the view, measured in points.
 43 |     override init(frame: CGRect) {
    |              `- error: initializer does not override a designated initializer from its superclass
 44 |         paletteManager = ColorPaletteManager(colors: [], selectedColor: nil)
 45 |         super.init(frame: frame)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:66:26: error: method does not override any method from its superclass
 64 |
 65 |     // https://stackoverflow.com/questions/728372/when-is-layoutsubviews-called
 66 |     public override func layoutSubviews() {
    |                          `- error: method does not override any method from its superclass
 67 |         super.layoutSubviews()
 68 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:84:78: error: cannot find type 'UITraitCollection' in scope
 82 |     }
 83 |
 84 |     public override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
    |                                                                              `- error: cannot find type 'UITraitCollection' in scope
 85 |         super.traitCollectionDidChange(previousTraitCollection)
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:84:26: error: method does not override any method from its superclass
 82 |     }
 83 |
 84 |     public override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
    |                          `- error: method does not override any method from its superclass
 85 |         super.traitCollectionDidChange(previousTraitCollection)
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:17:32: error: cannot find type 'SKView' in scope
 15 | ///         .nodeStyle(CustomNodeStyle())
 16 | ///
 17 | public class ColorPaletteView: SKView {
    |                                `- error: cannot find type 'SKView' in scope
 18 |
 19 |     public lazy var paletteScene: ColorPaletteScene = {
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift:22:81: error: type 'UIColor' has no member 'label'
20 |     /// - Parameter uiColor: The font color to use in this node.
21 |     /// - Returns: A node with the default font set to the value you supply.
22 |     func font(name: String = "SanFranciscoDisplay-Regular", uiColor: UIColor = .label) -> ColorNode {
   |                                                                                 `- error: type 'UIColor' has no member 'label'
23 |         modifier(FontModifier(name: name, uiColor: uiColor))
24 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift:7:25: error: cannot find type 'UIUserInterfaceStyle' in scope
 5 | import UIKit
 6 |
 7 | typealias ColorScheme = UIUserInterfaceStyle
   |                         `- error: cannot find type 'UIUserInterfaceStyle' in scope
 8 |
 9 | class ColorPaletteManager: ObservableObject {
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:30:16: warning: static property 'allColors' is not concurrency-safe because non-'Sendable' type '[PaletteColor]' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 28 | public extension PaletteColor {
 29 |
 30 |     static let allColors: [PaletteColor] = [
    |                |- warning: static property 'allColors' is not concurrency-safe because non-'Sendable' type '[PaletteColor]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'allColors' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |         .antwerpBlue,
 32 |         .arcticBlue,
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:64:16: warning: static property 'antwerpBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 62 | public extension PaletteColor {
 63 |
 64 |     static let antwerpBlue = PaletteColor(name: "Antwerp Blue", uiColor: .antwerpBlue)
    |                |- warning: static property 'antwerpBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'antwerpBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     static let arcticBlue = PaletteColor(name: "Arctic Blue", uiColor: .arcticBlue)
 66 |     static let bonoboGreen = PaletteColor(name: "Bonobo Green", uiColor: .bonoboGreen)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:65:16: warning: static property 'arcticBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 63 |
 64 |     static let antwerpBlue = PaletteColor(name: "Antwerp Blue", uiColor: .antwerpBlue)
 65 |     static let arcticBlue = PaletteColor(name: "Arctic Blue", uiColor: .arcticBlue)
    |                |- warning: static property 'arcticBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'arcticBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     static let bonoboGreen = PaletteColor(name: "Bonobo Green", uiColor: .bonoboGreen)
 67 |     static let brilliantViolet = PaletteColor(name: "Brilliant Violet", uiColor: .brilliantViolet)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:66:16: warning: static property 'bonoboGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 64 |     static let antwerpBlue = PaletteColor(name: "Antwerp Blue", uiColor: .antwerpBlue)
 65 |     static let arcticBlue = PaletteColor(name: "Arctic Blue", uiColor: .arcticBlue)
 66 |     static let bonoboGreen = PaletteColor(name: "Bonobo Green", uiColor: .bonoboGreen)
    |                |- warning: static property 'bonoboGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'bonoboGreen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |     static let brilliantViolet = PaletteColor(name: "Brilliant Violet", uiColor: .brilliantViolet)
 68 |     static let cadiumOrange = PaletteColor(name: "Cadium Orange", uiColor: .cadiumOrange)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:67:16: warning: static property 'brilliantViolet' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 65 |     static let arcticBlue = PaletteColor(name: "Arctic Blue", uiColor: .arcticBlue)
 66 |     static let bonoboGreen = PaletteColor(name: "Bonobo Green", uiColor: .bonoboGreen)
 67 |     static let brilliantViolet = PaletteColor(name: "Brilliant Violet", uiColor: .brilliantViolet)
    |                |- warning: static property 'brilliantViolet' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'brilliantViolet' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |     static let cadiumOrange = PaletteColor(name: "Cadium Orange", uiColor: .cadiumOrange)
 69 |     static let fluorescentPink = PaletteColor(name: "Fluorescent Pink", uiColor: .fluorescentPink)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:68:16: warning: static property 'cadiumOrange' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 66 |     static let bonoboGreen = PaletteColor(name: "Bonobo Green", uiColor: .bonoboGreen)
 67 |     static let brilliantViolet = PaletteColor(name: "Brilliant Violet", uiColor: .brilliantViolet)
 68 |     static let cadiumOrange = PaletteColor(name: "Cadium Orange", uiColor: .cadiumOrange)
    |                |- warning: static property 'cadiumOrange' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cadiumOrange' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |     static let fluorescentPink = PaletteColor(name: "Fluorescent Pink", uiColor: .fluorescentPink)
 70 |     static let kiwiGreen = PaletteColor(name: "Kiwi Green", uiColor: .kiwiGreen)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:69:16: warning: static property 'fluorescentPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 67 |     static let brilliantViolet = PaletteColor(name: "Brilliant Violet", uiColor: .brilliantViolet)
 68 |     static let cadiumOrange = PaletteColor(name: "Cadium Orange", uiColor: .cadiumOrange)
 69 |     static let fluorescentPink = PaletteColor(name: "Fluorescent Pink", uiColor: .fluorescentPink)
    |                |- warning: static property 'fluorescentPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'fluorescentPink' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |     static let kiwiGreen = PaletteColor(name: "Kiwi Green", uiColor: .kiwiGreen)
 71 |     static let kraftBrown = PaletteColor(name: "Kraft Brown", uiColor: .kraftBrown)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:70:16: warning: static property 'kiwiGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 68 |     static let cadiumOrange = PaletteColor(name: "Cadium Orange", uiColor: .cadiumOrange)
 69 |     static let fluorescentPink = PaletteColor(name: "Fluorescent Pink", uiColor: .fluorescentPink)
 70 |     static let kiwiGreen = PaletteColor(name: "Kiwi Green", uiColor: .kiwiGreen)
    |                |- warning: static property 'kiwiGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kiwiGreen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |     static let kraftBrown = PaletteColor(name: "Kraft Brown", uiColor: .kraftBrown)
 72 |     static let mauvePurple = PaletteColor(name: "Mauve Purple", uiColor: .mauvePurple)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:71:16: warning: static property 'kraftBrown' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 69 |     static let fluorescentPink = PaletteColor(name: "Fluorescent Pink", uiColor: .fluorescentPink)
 70 |     static let kiwiGreen = PaletteColor(name: "Kiwi Green", uiColor: .kiwiGreen)
 71 |     static let kraftBrown = PaletteColor(name: "Kraft Brown", uiColor: .kraftBrown)
    |                |- warning: static property 'kraftBrown' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kraftBrown' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |     static let mauvePurple = PaletteColor(name: "Mauve Purple", uiColor: .mauvePurple)
 73 |     static let orangeYellow = PaletteColor(name: "Orange Yellow", uiColor: .orangeYellow)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:72:16: warning: static property 'mauvePurple' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 70 |     static let kiwiGreen = PaletteColor(name: "Kiwi Green", uiColor: .kiwiGreen)
 71 |     static let kraftBrown = PaletteColor(name: "Kraft Brown", uiColor: .kraftBrown)
 72 |     static let mauvePurple = PaletteColor(name: "Mauve Purple", uiColor: .mauvePurple)
    |                |- warning: static property 'mauvePurple' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'mauvePurple' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     static let orangeYellow = PaletteColor(name: "Orange Yellow", uiColor: .orangeYellow)
 74 |     static let oxideGreen = PaletteColor(name: "Oxide Green", uiColor: .oxideGreen)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:73:16: warning: static property 'orangeYellow' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 71 |     static let kraftBrown = PaletteColor(name: "Kraft Brown", uiColor: .kraftBrown)
 72 |     static let mauvePurple = PaletteColor(name: "Mauve Purple", uiColor: .mauvePurple)
 73 |     static let orangeYellow = PaletteColor(name: "Orange Yellow", uiColor: .orangeYellow)
    |                |- warning: static property 'orangeYellow' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'orangeYellow' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |     static let oxideGreen = PaletteColor(name: "Oxide Green", uiColor: .oxideGreen)
 75 |     static let peachBlossomPink = PaletteColor(name: "Peach Blossom Pink", uiColor: .peachBlossomPink)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:74:16: warning: static property 'oxideGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 72 |     static let mauvePurple = PaletteColor(name: "Mauve Purple", uiColor: .mauvePurple)
 73 |     static let orangeYellow = PaletteColor(name: "Orange Yellow", uiColor: .orangeYellow)
 74 |     static let oxideGreen = PaletteColor(name: "Oxide Green", uiColor: .oxideGreen)
    |                |- warning: static property 'oxideGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'oxideGreen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |     static let peachBlossomPink = PaletteColor(name: "Peach Blossom Pink", uiColor: .peachBlossomPink)
 76 |     static let red = PaletteColor(name: "Red", uiColor: .red)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:75:16: warning: static property 'peachBlossomPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 73 |     static let orangeYellow = PaletteColor(name: "Orange Yellow", uiColor: .orangeYellow)
 74 |     static let oxideGreen = PaletteColor(name: "Oxide Green", uiColor: .oxideGreen)
 75 |     static let peachBlossomPink = PaletteColor(name: "Peach Blossom Pink", uiColor: .peachBlossomPink)
    |                |- warning: static property 'peachBlossomPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'peachBlossomPink' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     static let red = PaletteColor(name: "Red", uiColor: .red)
 77 |     static let royalBlue = PaletteColor(name: "Royal Blue", uiColor: .royalBlue)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:76:16: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 74 |     static let oxideGreen = PaletteColor(name: "Oxide Green", uiColor: .oxideGreen)
 75 |     static let peachBlossomPink = PaletteColor(name: "Peach Blossom Pink", uiColor: .peachBlossomPink)
 76 |     static let red = PaletteColor(name: "Red", uiColor: .red)
    |                |- warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'red' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     static let royalBlue = PaletteColor(name: "Royal Blue", uiColor: .royalBlue)
 78 |     static let scarletRed = PaletteColor(name: "Scarlet Red", uiColor: .scarletRed)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:77:16: warning: static property 'royalBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 75 |     static let peachBlossomPink = PaletteColor(name: "Peach Blossom Pink", uiColor: .peachBlossomPink)
 76 |     static let red = PaletteColor(name: "Red", uiColor: .red)
 77 |     static let royalBlue = PaletteColor(name: "Royal Blue", uiColor: .royalBlue)
    |                |- warning: static property 'royalBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'royalBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |     static let scarletRed = PaletteColor(name: "Scarlet Red", uiColor: .scarletRed)
 79 |     static let seaweedGreen = PaletteColor(name: "Seaweed Green", uiColor: .seaweedGreen)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:78:16: warning: static property 'scarletRed' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 76 |     static let red = PaletteColor(name: "Red", uiColor: .red)
 77 |     static let royalBlue = PaletteColor(name: "Royal Blue", uiColor: .royalBlue)
 78 |     static let scarletRed = PaletteColor(name: "Scarlet Red", uiColor: .scarletRed)
    |                |- warning: static property 'scarletRed' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'scarletRed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |     static let seaweedGreen = PaletteColor(name: "Seaweed Green", uiColor: .seaweedGreen)
 80 |     static let skyBlue = PaletteColor(name: "Sky Blue", uiColor: .skyBlue)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:79:16: warning: static property 'seaweedGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 77 |     static let royalBlue = PaletteColor(name: "Royal Blue", uiColor: .royalBlue)
 78 |     static let scarletRed = PaletteColor(name: "Scarlet Red", uiColor: .scarletRed)
 79 |     static let seaweedGreen = PaletteColor(name: "Seaweed Green", uiColor: .seaweedGreen)
    |                |- warning: static property 'seaweedGreen' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'seaweedGreen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |     static let skyBlue = PaletteColor(name: "Sky Blue", uiColor: .skyBlue)
 81 |     static let sunflowerYellow = PaletteColor(name: "Sunflower Yellow", uiColor: .sunflowerYellow)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:80:16: warning: static property 'skyBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 78 |     static let scarletRed = PaletteColor(name: "Scarlet Red", uiColor: .scarletRed)
 79 |     static let seaweedGreen = PaletteColor(name: "Seaweed Green", uiColor: .seaweedGreen)
 80 |     static let skyBlue = PaletteColor(name: "Sky Blue", uiColor: .skyBlue)
    |                |- warning: static property 'skyBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'skyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |     static let sunflowerYellow = PaletteColor(name: "Sunflower Yellow", uiColor: .sunflowerYellow)
 82 |     static let underwaterBlue = PaletteColor(name: "Underwater Blue", uiColor: .underwaterBlue)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:81:16: warning: static property 'sunflowerYellow' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 79 |     static let seaweedGreen = PaletteColor(name: "Seaweed Green", uiColor: .seaweedGreen)
 80 |     static let skyBlue = PaletteColor(name: "Sky Blue", uiColor: .skyBlue)
 81 |     static let sunflowerYellow = PaletteColor(name: "Sunflower Yellow", uiColor: .sunflowerYellow)
    |                |- warning: static property 'sunflowerYellow' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'sunflowerYellow' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     static let underwaterBlue = PaletteColor(name: "Underwater Blue", uiColor: .underwaterBlue)
 83 |     static let wednesdayPink = PaletteColor(name: "Wednesday Pink", uiColor: .wednesdayPink)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:82:16: warning: static property 'underwaterBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 80 |     static let skyBlue = PaletteColor(name: "Sky Blue", uiColor: .skyBlue)
 81 |     static let sunflowerYellow = PaletteColor(name: "Sunflower Yellow", uiColor: .sunflowerYellow)
 82 |     static let underwaterBlue = PaletteColor(name: "Underwater Blue", uiColor: .underwaterBlue)
    |                |- warning: static property 'underwaterBlue' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'underwaterBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |     static let wednesdayPink = PaletteColor(name: "Wednesday Pink", uiColor: .wednesdayPink)
 84 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:83:16: warning: static property 'wednesdayPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 81 |     static let sunflowerYellow = PaletteColor(name: "Sunflower Yellow", uiColor: .sunflowerYellow)
 82 |     static let underwaterBlue = PaletteColor(name: "Underwater Blue", uiColor: .underwaterBlue)
 83 |     static let wednesdayPink = PaletteColor(name: "Wednesday Pink", uiColor: .wednesdayPink)
    |                |- warning: static property 'wednesdayPink' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'wednesdayPink' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |
 85 |     static let bonoboGrey = PaletteColor(name: "Bonobo Grey", uiColor: .bonoboGrey)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:53:16: warning: static property 'allBwColors' is not concurrency-safe because non-'Sendable' type '[PaletteColor]' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 51 |     ]
 52 |
 53 |     static let allBwColors: [PaletteColor] = [
    |                |- warning: static property 'allBwColors' is not concurrency-safe because non-'Sendable' type '[PaletteColor]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'allBwColors' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |         .bonoboGrey,
 55 |         .lunaBlack,
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:85:16: warning: static property 'bonoboGrey' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 83 |     static let wednesdayPink = PaletteColor(name: "Wednesday Pink", uiColor: .wednesdayPink)
 84 |
 85 |     static let bonoboGrey = PaletteColor(name: "Bonobo Grey", uiColor: .bonoboGrey)
    |                |- warning: static property 'bonoboGrey' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'bonoboGrey' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     static let lunaBlack = PaletteColor(name: "Luna Black", uiColor: .lunaBlack)
 87 |     static let pebbleGrey = PaletteColor(name: "Pebble Grey", uiColor: .pebbleGrey)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:86:16: warning: static property 'lunaBlack' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 84 |
 85 |     static let bonoboGrey = PaletteColor(name: "Bonobo Grey", uiColor: .bonoboGrey)
 86 |     static let lunaBlack = PaletteColor(name: "Luna Black", uiColor: .lunaBlack)
    |                |- warning: static property 'lunaBlack' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lunaBlack' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |     static let pebbleGrey = PaletteColor(name: "Pebble Grey", uiColor: .pebbleGrey)
 88 |     static let white = PaletteColor(name: "White", uiColor: .white)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:87:16: warning: static property 'pebbleGrey' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 85 |     static let bonoboGrey = PaletteColor(name: "Bonobo Grey", uiColor: .bonoboGrey)
 86 |     static let lunaBlack = PaletteColor(name: "Luna Black", uiColor: .lunaBlack)
 87 |     static let pebbleGrey = PaletteColor(name: "Pebble Grey", uiColor: .pebbleGrey)
    |                |- warning: static property 'pebbleGrey' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'pebbleGrey' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     static let white = PaletteColor(name: "White", uiColor: .white)
 89 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:88:16: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | /// A `PaletteColor` holds the name and color associated with a given node.
  7 | public struct PaletteColor: Equatable {
    |               `- note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
  8 |
  9 |     /// The name of the color
    :
 86 |     static let lunaBlack = PaletteColor(name: "Luna Black", uiColor: .lunaBlack)
 87 |     static let pebbleGrey = PaletteColor(name: "Pebble Grey", uiColor: .pebbleGrey)
 88 |     static let white = PaletteColor(name: "White", uiColor: .white)
    |                |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'PaletteColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |
 90 | }
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:84:43: error: cannot find type 'SKView' in scope
 82 | extension ColorPaletteScene {
 83 |
 84 |     public override func didMove(to view: SKView) {
    |                                           `- error: cannot find type 'SKView' in scope
 85 |         configureScenePhysics()
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:84:26: error: method does not override any method from its superclass
 82 | extension ColorPaletteScene {
 83 |
 84 |     public override func didMove(to view: SKView) {
    |                          `- error: method does not override any method from its superclass
 85 |         configureScenePhysics()
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:225:54: error: cannot find type 'UITouch' in scope
223 | extension ColorPaletteScene {
224 |
225 |     public override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                      `- error: cannot find type 'UITouch' in scope
226 |         guard let location = touches.first?.location(in: self) else { return }
227 |         guard let node = node(at: location) else { return }
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:225:76: error: cannot find type 'UIEvent' in scope
223 | extension ColorPaletteScene {
224 |
225 |     public override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                                            `- error: cannot find type 'UIEvent' in scope
226 |         guard let location = touches.first?.location(in: self) else { return }
227 |         guard let node = node(at: location) else { return }
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:225:26: error: method does not override any method from its superclass
223 | extension ColorPaletteScene {
224 |
225 |     public override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                          `- error: method does not override any method from its superclass
226 |         guard let location = touches.first?.location(in: self) else { return }
227 |         guard let node = node(at: location) else { return }
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:252:54: error: cannot find type 'UITouch' in scope
250 | extension ColorPaletteScene {
251 |
252 |     public override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                      `- error: cannot find type 'UITouch' in scope
253 |         guard let activeNode = state.activeNode else { return }
254 |         if isNodeFocused(activeNode) &&
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:252:76: error: cannot find type 'UIEvent' in scope
250 | extension ColorPaletteScene {
251 |
252 |     public override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                                            `- error: cannot find type 'UIEvent' in scope
253 |         guard let activeNode = state.activeNode else { return }
254 |         if isNodeFocused(activeNode) &&
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:252:26: error: method does not override any method from its superclass
250 | extension ColorPaletteScene {
251 |
252 |     public override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                          `- error: method does not override any method from its superclass
253 |         guard let activeNode = state.activeNode else { return }
254 |         if isNodeFocused(activeNode) &&
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:284:54: error: cannot find type 'UITouch' in scope
282 | extension ColorPaletteScene {
283 |
284 |     public override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                      `- error: cannot find type 'UITouch' in scope
285 |         guard let activeNode = state.activeNode else { return }
286 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:284:76: error: cannot find type 'UIEvent' in scope
282 | extension ColorPaletteScene {
283 |
284 |     public override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                                                                            `- error: cannot find type 'UIEvent' in scope
285 |         guard let activeNode = state.activeNode else { return }
286 |
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift:284:26: error: method does not override any method from its superclass
282 | extension ColorPaletteScene {
283 |
284 |     public override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    |                          `- error: method does not override any method from its superclass
285 |         guard let activeNode = state.activeNode else { return }
286 |
SwiftCompile normal arm64 Compiling\ ColorPaletteBindingView.swift,\ ColorPaletteView.swift,\ CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:40:37: error: cannot find type 'Context' in scope
    public func makeUIView(context: Context) -> ColorPaletteView {
                                    ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:44:67: error: cannot find type 'Context' in scope
    public func updateUIView(_ uiView: ColorPaletteView, context: Context) {
                                                                  ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:16:40: error: cannot find type 'UIViewRepresentable' in scope
public struct ColorPaletteBindingView: UIViewRepresentable {
                                       ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:62:27: warning: capture of 'self' with non-sendable type 'ColorPaletteBindingView' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            withAnimation(self.bindingAnimation) {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:16:15: note: consider making struct 'ColorPaletteBindingView' conform to the 'Sendable' protocol
public struct ColorPaletteBindingView: UIViewRepresentable {
              ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:63:38: warning: capture of 'color' with non-sendable type 'PaletteColor' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                self.selectedColor = color
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:7:15: note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
public struct PaletteColor: Equatable {
              ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:63:17: warning: capture of 'self' with non-sendable type 'ColorPaletteBindingView' in an isolated closure; this is an error in the Swift 6 language mode
                self.selectedColor = color
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:16:15: note: consider making struct 'ColorPaletteBindingView' conform to the 'Sendable' protocol
public struct ColorPaletteBindingView: UIViewRepresentable {
              ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift:63:38: warning: capture of 'color' with non-sendable type 'PaletteColor' in an isolated closure; this is an error in the Swift 6 language mode
                self.selectedColor = color
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift:7:15: note: consider making struct 'PaletteColor' conform to the 'Sendable' protocol
public struct PaletteColor: Equatable {
              ^
                                     , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:23:9: error: cannot find 'presentScene' in scope
        presentScene(scene)
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:43:14: error: initializer does not override a designated initializer from its superclass
    override init(frame: CGRect) {
    ~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:66:26: error: method does not override any method from its superclass
    public override func layoutSubviews() {
           ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:84:78: error: cannot find type 'UITraitCollection' in scope
    public override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
                                                                             ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:84:26: error: method does not override any method from its superclass
    public override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
           ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:17:32: error: cannot find type 'SKView' in scope
public class ColorPaletteView: SKView {
                               ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:35:9: error: 'super' members cannot be referenced in a root class
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:45:9: error: 'super' members cannot be referenced in a root class
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:55:9: error: 'super' members cannot be referenced in a root class
        super.init(coder: coder)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:60:9: error: cannot find 'allowsTransparency' in scope
        allowsTransparency = true
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:61:9: error: cannot find 'backgroundColor' in scope
        backgroundColor = .clear
        ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:62:9: error: cannot find 'isUserInteractionEnabled' in scope
        isUserInteractionEnabled = true
        ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:67:9: error: 'super' members cannot be referenced in a root class
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:85:9: error: 'super' members cannot be referenced in a root class
        super.traitCollectionDidChange(previousTraitCollection)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift:87:44: error: cannot find 'traitCollection' in scope
        paletteManager.activeColorScheme = traitCollection.userInterfaceStyle
                                           ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift:7:25: error: cannot find type 'UIUserInterfaceStyle' in scope
typealias ColorScheme = UIUserInterfaceStyle
                        ^~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ StartUpModifier.swift,\ Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/StartUpModifier.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Buildable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CGVector+Operators.swift,\ ColorNode+Modifiers.swift,\ Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift:22:81: error: type 'UIColor' has no member 'label'
    func font(name: String = "SanFranciscoDisplay-Regular", uiColor: UIColor = .label) -> ColorNode {
                                                                               ~^~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/CGVector+Operators.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ColorNode+Modifiers.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/Comparable+Clamped.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation\ Requirements ElegantColorPalette normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name ElegantColorPalette -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ ColorPaletteBindingView.swift,\ ColorPaletteView.swift,\ CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/supplementaryOutputs-1 -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/supplementaryOutputs-1 -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/supplementaryOutputs-1 -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/UIColor+Color.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/ColorPaletteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/DefaultNodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/FocusSettings.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/NodeStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/PaletteColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Models/SpawnConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FocusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/FontModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/HighlightModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/RadiusModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/ScaleFadeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Modifiers/StartUpModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/ColorSchemeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/supplementaryOutputs-1 -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ElegantColorPalette_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ElegantColorPalette -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteBindingView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/ColorPaletteView.o -index-unit-output-path /ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64_32/CGVector+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftmodule (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftmodule
error: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftmodule: No such file or directory (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftdoc (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftdoc
error: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftdoc: No such file or directory (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.abi.json (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.abi.json
error: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.abi.json: No such file or directory (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ ColorPaletteScene.swift,\ ColorsContainerNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorsContainerNode.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorPaletteScene.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 Compiling\ NodeStyle.swift,\ ColorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Protocols/NodeStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Views/ColorNode.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ ElegantColorPalette (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 Compiling\ ColorPaletteBindingView.swift,\ ColorPaletteView.swift,\ CGVector+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Additions.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteBindingView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/ColorPaletteView.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 Compiling\ CGVector+Operators.swift,\ ColorNode+Modifiers.swift,\ Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/CGVector+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/Comparable+Clamped.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantColorPalette/Helpers/Extensions/ColorNode+Modifiers.swift (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftmodule (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.swiftdoc (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
	Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ElegantColorPalette.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantColorPalette.build/Debug-watchos/ElegantColorPalette.build/Objects-normal/arm64/ElegantColorPalette.abi.json (in target 'ElegantColorPalette' from project 'ElegantColorPalette')
(13 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.