-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackage.swift
69 lines (65 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// swift-tools-version: 5.5
// swiftlint:disable explicit_top_level_acl explicit_acl
import PackageDescription
let package = Package(
name: "SundialKit",
platforms: [
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
.macOS(.v10_13)
],
products: [
.library(
name: "SundialKit",
targets: ["SundialKit"]
)
],
dependencies: [
.package(url: "https://github.com/shibapm/Komondor", from: "1.1.2"), // dev
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.47.0"), // dev
.package(url: "https://github.com/realm/SwiftLint", from: "0.41.0"), // dev
.package(url: "https://github.com/shibapm/Rocket", from: "1.2.0") // dev
],
targets: [
.target(
name: "SundialKit",
dependencies: []
),
.testTarget(
name: "SundialKitTests",
dependencies: ["SundialKit"]
)
]
)
#if canImport(PackageConfig)
import PackageConfig
let requiredCoverage: Int = 0
let config = PackageConfiguration([
"rocket": [
"steps":
[
"hide_dev_dependencies",
"git_add",
["commit": ["no_verify": true]],
"tag",
"unhide_dev_dependencies",
"git_add",
["commit": ["message": "Unhide dev dependencies"]]
]
],
"komondor": [
"pre-push": [
"swift test --enable-code-coverage"
],
"pre-commit": [
"swift test --enable-code-coverage",
"swift run swiftformat .",
"swift run swiftlint autocorrect",
"git add .",
"swift run swiftformat --lint .",
"swift run swiftlint lint --strict"
]
]
]).write()
#endif