Skip to content

Commit 0fa21a9

Browse files
committed
Clean up package manifest
1 parent 9fbd549 commit 0fa21a9

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

Package.swift

+3-16
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,15 @@
11
// swift-tools-version: 5.7
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
32

43
import PackageDescription
54

65
let package = Package(
76
name: "DebugLayout",
87
platforms: [.macOS(.v13), .iOS(.v16), .tvOS(.v16), .watchOS(.v9)],
98
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
11-
.library(
12-
name: "DebugLayout",
13-
targets: ["DebugLayout"]
14-
),
15-
],
16-
dependencies: [
17-
// Dependencies declare other packages that this package depends on.
18-
// .package(url: /* package url */, from: "1.0.0"),
9+
.library(name: "DebugLayout", targets: ["DebugLayout"]),
1910
],
11+
dependencies: [],
2012
targets: [
21-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
22-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
23-
.target(
24-
name: "DebugLayout",
25-
dependencies: []
26-
),
13+
.target(name: "DebugLayout", dependencies: []),
2714
]
2815
)

0 commit comments

Comments
 (0)