Skip to content

Commit

Permalink
Move Constants target before Flows target
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPalo committed Nov 26, 2024
1 parent a740c6e commit 4b90f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ let package = Package(
.target(name: "macOS", dependencies: [.target(name: "Base")]),
.target(name: "iOS", dependencies: [.target(name: "Base")]),
.target(name: "tvOS", dependencies: [.target(name: "Base")]),
.target(name: "Constants"),
.target(name: "Flows", dependencies: [
.target(name: "macOS"), .target(name: "iOS"), .target(name: "tvOS"), .target(name: "Constants")]),
.target(name: "DataLoader", dependencies: [.target(name: "Flows")]),
.target(name: "Constants"),
.testTarget(name: "BaseTests", dependencies: [.target(name: "Base"), .target(name: "Flows")]),
.testTarget(name: "FlowTests", dependencies: [.target(name: "Flows")]),
// .testTarget(name: "DataLoaderTests", dependencies: [.target(name: "DataLoader")]),
Expand Down

0 comments on commit 4b90f32

Please sign in to comment.