* Update dependency element-hq/compound-design-tokens to v6.5.0 * Update Package.resolved files. * Use the new translate icon. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Doug <douglase@element.io>
39 lines
1.3 KiB
Swift
39 lines
1.3 KiB
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Compound",
|
|
platforms: [.iOS(.v17)],
|
|
products: [
|
|
.library(name: "Compound", targets: ["Compound"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/element-hq/compound-design-tokens", exact: "6.5.0"),
|
|
// .package(path: "../compound-design-tokens"),
|
|
.package(url: "https://github.com/siteline/SwiftUI-Introspect", from: "26.0.0"),
|
|
.package(url: "https://github.com/SFSafeSymbols/SFSafeSymbols", from: "7.0.0"),
|
|
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", exact: "1.18.3")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Compound",
|
|
dependencies: [
|
|
.product(name: "CompoundDesignTokens", package: "compound-design-tokens"),
|
|
.product(name: "SwiftUIIntrospect", package: "SwiftUI-Introspect"),
|
|
.product(name: "SFSafeSymbols", package: "SFSafeSymbols")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "CompoundTests",
|
|
dependencies: [
|
|
"Compound",
|
|
.product(name: "SnapshotTesting", package: "swift-snapshot-testing")
|
|
],
|
|
exclude: [
|
|
"__Snapshots__"
|
|
]
|
|
)
|
|
]
|
|
)
|