Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 13s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
34 lines
776 B
Swift
34 lines
776 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LilithFeedback",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v13),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LilithFeedback",
|
|
targets: ["LilithFeedback"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../tokens"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LilithFeedback",
|
|
dependencies: [
|
|
.product(name: "LilithDesignTokens", package: "tokens"),
|
|
],
|
|
path: "Sources/LilithFeedback"
|
|
),
|
|
.testTarget(
|
|
name: "LilithFeedbackTests",
|
|
dependencies: ["LilithFeedback"],
|
|
path: "Tests/LilithFeedbackTests"
|
|
),
|
|
]
|
|
)
|