-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (22 loc) · 840 Bytes
/
Package.swift
File metadata and controls
23 lines (22 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.5
// The above package version relates to the version Danger/Swift is using on their Git repo package file.
import PackageDescription
let package = Package(
name: "WeTransfer-iOS-CI",
platforms: [
.macOS(.v10_15)
],
products: [
.library(name: "DangerDeps", type: .dynamic, targets: ["DangerDependencies"])
],
dependencies: [
.package(name: "danger-swift", url: "https://github.com/danger/swift", from: "3.20.2"),
.package(path: "WeTransferPRLinter")
],
targets: [
.target(name: "DangerDependencies", dependencies: [
.product(name: "Danger", package: "danger-swift"),
.product(name: "WeTransferPRLinter", package: "WeTransferPRLinter")
], path: "DangerFakeSources", sources: ["DangerFakeSource.swift"])
]
)