swift-feedback/Package.swift
autocommit 11ee24d1c7
Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 13s
deps-pin(deps): 📌 Pin local design tokens package in Package.swift
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-06 00:09:48 -07:00

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"
),
]
)