Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ let package = Package(
.tvOS(.v13),
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SwiftUISupport",
targets: ["SwiftUISupport"]
)
),
.library(name: "SwiftUISupportSizing", targets: ["SwiftUISupportSizing"])
],
dependencies: [
],
Expand All @@ -26,6 +26,7 @@ let package = Package(
dependencies: [
]
),
.target(name: "SwiftUISupportSizing"),
.testTarget(
name: "SwiftUISupportTests",
dependencies: ["SwiftUISupport"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public struct ResizableModifier: ViewModifier {
}

#if DEBUG

struct BookScalingFrame: View, PreviewProvider {
var body: some View {
Content()
Expand Down