Skip to content

Commit 9fd8ee5

Browse files
authored
Change order of vended products (#306)
1 parent b400ef5 commit 9fd8ee5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

[email protected]

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ let package = Package(
1010
.macOS(.v10_15),
1111
],
1212
products: [
13-
// old module
14-
.library(name: "Introspect", targets: ["Introspect"]),
15-
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
16-
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),
17-
1813
// new module
1914
.library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]),
2015
.library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]),
2116
.library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]),
17+
18+
// old module
19+
.library(name: "Introspect", targets: ["Introspect"]),
20+
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
21+
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),
2222
],
2323
targets: [
2424
.target(

0 commit comments

Comments
 (0)