mirror of
https://github.com/laosb/TypedAppStorage.git
synced 2025-07-18 04:52:39 +00:00
chore: format with swift format
This commit is contained in:
parent
23ffb4892b
commit
4c932cb336
3 changed files with 45 additions and 30 deletions
|
@ -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"]
|
||||
),
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue