forked from fastlane/fastlane
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (21 loc) · 700 Bytes
/
Package.swift
File metadata and controls
23 lines (21 loc) · 700 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:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Fastlane",
products: [
.library(name: "Fastlane", targets: ["Fastlane"])
],
dependencies: [
.package(url: "https://github.com/kareman/SwiftShell", .upToNextMajor(from: "5.1.0"))
],
targets: [
.target(
name: "Fastlane",
dependencies: ["SwiftShell"],
path: "./fastlane/swift",
exclude: ["Actions.swift", "Plugins.swift", "main.swift", "formatting", "FastlaneSwiftRunner"]
),
],
swiftLanguageVersions: [4]
)