Skip to content

Commit c35977f

Browse files
authored
Add SwiftUISupportSizing module (#41)
1 parent 37c48a3 commit c35977f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ let package = Package(
1212
.tvOS(.v13),
1313
],
1414
products: [
15-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1615
.library(
1716
name: "SwiftUISupport",
1817
targets: ["SwiftUISupport"]
19-
)
18+
),
19+
.library(name: "SwiftUISupportSizing", targets: ["SwiftUISupportSizing"])
2020
],
2121
dependencies: [
2222
],
@@ -26,6 +26,7 @@ let package = Package(
2626
dependencies: [
2727
]
2828
),
29+
.target(name: "SwiftUISupportSizing"),
2930
.testTarget(
3031
name: "SwiftUISupportTests",
3132
dependencies: ["SwiftUISupport"]

Sources/SwiftUISupport/Modifiers/ResizableModifier.swift renamed to Sources/SwiftUISupportSizing/ResizableModifier.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ public struct ResizableModifier: ViewModifier {
6262
}
6363

6464
#if DEBUG
65-
6665
struct BookScalingFrame: View, PreviewProvider {
6766
var body: some View {
6867
Content()
File renamed without changes.

0 commit comments

Comments
 (0)