-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
37 lines (33 loc) · 1.01 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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "Insurgency",
products: [
.library(name: "Insurgency", targets: ["Insurgency"]),
],
dependencies: [
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.35.8"),
.package(url: "https://github.com/Realm/SwiftLint", from: "0.28.1"),
.package(url: "https://github.com/orta/Komondor", from: "1.0.0"),
],
targets: [
.target(name: "Insurgency", dependencies: [], path: "Insurgency"),
.testTarget(name: "InsurgencyTests", dependencies: ["Insurgency"], path: "InsurgencyTests"),
]
)
#if canImport(PackageConfig)
import PackageConfig
let config = PackageConfiguration([
"komondor": [
"pre-commit": [
"swift run swiftformat .",
"swift run swiftlint --path Insurgency/",
],
],
"rocket": [
"after": [
"push",
],
],
]).write()
#endif