chore: format with swift format

This commit is contained in:
Shibo Lyu 2025-06-14 19:55:53 +08:00
parent 23ffb4892b
commit 4c932cb336
3 changed files with 45 additions and 30 deletions

View file

@ -10,21 +10,24 @@ let package = Package(
.macOS(.v11),
.macCatalyst(.v14),
.tvOS(.v14),
.watchOS(.v7)
.watchOS(.v7),
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "TypedAppStorage",
targets: ["TypedAppStorage"]),
targets: ["TypedAppStorage"]
)
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "TypedAppStorage"),
name: "TypedAppStorage"
),
.testTarget(
name: "TypedAppStorageTests",
dependencies: ["TypedAppStorage"]),
dependencies: ["TypedAppStorage"]
),
]
)