-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 877 Bytes
/
Copy pathPackage.swift
File metadata and controls
25 lines (23 loc) · 877 Bytes
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
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "DangerPackage",
products: [
.library(name: "DangerDeps", type: .dynamic, targets: ["DangerDependencies"])
],
dependencies: [
.package(url: "https://github.com/danger/swift.git", from: "3.22.1"),
.package(url: "https://github.com/f-meloni/danger-swift-xcodesummary", from: "1.2.1"),
.package(url: "https://github.com/f-meloni/danger-swift-coverage", from: "1.2.1")
],
targets: [
.target(
name: "DangerDependencies",
dependencies: [
.product(name: "Danger", package: "swift"),
.product(name: "DangerSwiftCoverage", package: "danger-swift-coverage"),
.product(name: "DangerXCodeSummary", package: "danger-swift-xcodesummary")
]
)
]
)