Skip to content

Commit

Permalink
Change order of vended products (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
davdroman authored Jul 12, 2023
1 parent b400ef5 commit 9fd8ee5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Package@swift-5.7.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ let package = Package(
.macOS(.v10_15),
],
products: [
// old module
.library(name: "Introspect", targets: ["Introspect"]),
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),

// new module
.library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]),
.library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]),
.library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]),

// old module
.library(name: "Introspect", targets: ["Introspect"]),
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),
],
targets: [
.target(
Expand Down

0 comments on commit 9fd8ee5

Please sign in to comment.