Skip to content

Commit b03e47d

Browse files
committed
WIP
1 parent ffaa03b commit b03e47d

File tree

2 files changed

+227
-227
lines changed

2 files changed

+227
-227
lines changed

Package.swift

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "swiftui-introspect",
7-
platforms: [
8-
.iOS(.v13),
9-
.tvOS(.v13),
10-
.macOS(.v10_15),
11-
],
12-
products: [
13-
.library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]),
14-
.library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]),
15-
.library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]),
16-
],
17-
targets: [
18-
.target(
19-
name: "SwiftUIIntrospect",
20-
path: "Sources"
21-
),
22-
]
6+
name: "swiftui-introspect",
7+
platforms: [
8+
.iOS(.v13),
9+
.tvOS(.v13),
10+
.macOS(.v10_15),
11+
],
12+
products: [
13+
.library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]),
14+
.library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]),
15+
.library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]),
16+
],
17+
targets: [
18+
.target(
19+
name: "SwiftUIIntrospect",
20+
path: "Sources"
21+
),
22+
]
2323
)
2424

2525
for target in package.targets {
26-
target.swiftSettings = target.swiftSettings ?? []
27-
target.swiftSettings? += [
28-
.enableUpcomingFeature("ExistentialAny"),
29-
.enableUpcomingFeature("InternalImportsByDefault"),
30-
]
26+
target.swiftSettings = target.swiftSettings ?? []
27+
target.swiftSettings? += [
28+
.enableUpcomingFeature("ExistentialAny"),
29+
.enableUpcomingFeature("InternalImportsByDefault"),
30+
]
3131
}

0 commit comments

Comments
 (0)