Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 10s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
34 lines
823 B
Swift
34 lines
823 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LilithForms",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v13),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LilithForms",
|
|
targets: ["LilithForms"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://forge.nasty.sh/lilith/swift-design-tokens.git", from: "1.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LilithForms",
|
|
dependencies: [
|
|
.product(name: "LilithDesignTokens", package: "swift-design-tokens"),
|
|
],
|
|
path: "Sources/LilithForms"
|
|
),
|
|
.testTarget(
|
|
name: "LilithFormsTests",
|
|
dependencies: ["LilithForms"],
|
|
path: "Tests/LilithFormsTests"
|
|
),
|
|
]
|
|
)
|