generated from 21-DOT-DEV/swift-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
38 lines (36 loc) · 1.18 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "Tuist",
products: [
.executable(name: "tuist", targets: ["TuistExecutable"]),
.plugin(name: "TuistPlugin", targets: ["TuistPlugin"])
],
dependencies: [
.package(url: "https://github.com/21-DOT-DEV/swift-artifact-parser", exact: "0.0.1")
],
targets: [
.executableTarget(
name: "TuistExecutable",
dependencies: [
.product(name: "ArtifactParser", package: "swift-artifact-parser")
]
),
.plugin(
name: "TuistPlugin",
capability: .command(
intent: .custom(
verb: "tuist",
description: "Generate, build, and test your Xcode projects."
)
),
dependencies: ["tuist"]
),
.binaryTarget(
name: "tuist",
url: "https://github.com/21-DOT-DEV/swift-plugin-tuist/releases/download/4.43.2/tuist.artifactbundle.zip",
checksum: "176a1c20237e9dac072c49c1207929ff0ff34ce7947411f57d2cdac5eb559c00"
),
],
swiftLanguageVersions: [.v5]
)