mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 11:19:30 +00:00
4189a59cf6
* Initial iOS 17 + Observable migration * More Observation * More observation * Checkpoint * Checkpoint * Bump version to 1.8.0 * SwiftFormat * Fix home timeline switch on login * Fix sidebar routerPath * Fixes on detail view * Remove print changes * Simply detail view * More opt * Migrate DisplaySettingsLocalValues * Better post detail transition * Status detail animation finally right * Cleanup
41 lines
1.2 KiB
Swift
41 lines
1.2 KiB
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "DesignSystem",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "DesignSystem",
|
|
targets: ["DesignSystem"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(name: "Models", path: "../Models"),
|
|
.package(name: "Env", path: "../Env"),
|
|
.package(url: "https://github.com/markiv/SwiftUI-Shimmer", exact: "1.1.0"),
|
|
.package(url: "https://github.com/kean/Nuke", from: "12.0.0"),
|
|
.package(url: "https://github.com/divadretlaw/EmojiText", from: "2.6.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "DesignSystem",
|
|
dependencies: [
|
|
.product(name: "Models", package: "Models"),
|
|
.product(name: "Env", package: "Env"),
|
|
.product(name: "Shimmer", package: "SwiftUI-Shimmer"),
|
|
.product(name: "NukeUI", package: "Nuke"),
|
|
.product(name: "Nuke", package: "Nuke"),
|
|
.product(name: "EmojiText", package: "EmojiText"),
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency"),
|
|
]
|
|
),
|
|
]
|
|
)
|