-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
127 lines (122 loc) · 3.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "Nodes",
platforms: [
.macOS(.v12),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6),
],
products: [
.executable(
name: "nodes-code-gen",
targets: ["NodesCodeGenerator"]),
.executable(
name: "nodes-xcode-templates-gen",
targets: ["NodesXcodeTemplatesGenerator"]),
.library(
name: "Nodes",
targets: ["Nodes"]),
.library(
name: "NodesGenerator",
targets: ["NodesGenerator"]),
.library(
name: "NodesTesting",
targets: ["NodesTesting"]),
],
dependencies: [
.package(
url: "https://github.com/apple/swift-argument-parser.git",
exact: "1.5.0"),
.package(
url: "https://github.com/apple/swift-docc-plugin.git",
exact: "1.4.2"),
.package(
url: "https://github.com/JohnSundell/Codextended.git",
exact: "0.3.0"),
.package(
url: "https://github.com/jpsim/Yams.git",
exact: "5.1.3"),
.package(
url: "https://github.com/stencilproject/Stencil.git",
exact: "0.15.1"),
.package(
url: "https://github.com/uber/needle.git",
exact: "0.25.1"),
.package(
url: "https://github.com/realm/SwiftLint.git",
exact: "0.56.2"),
.package(
url: "https://github.com/Quick/Nimble.git",
exact: "13.4.0"),
.package(
url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
exact: "1.17.4"),
],
targets: [
.executableTarget(
name: "NodesCodeGenerator",
dependencies: [
"NodesGenerator",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
path: "Sources/Executables/NodesCodeGenerator"),
.executableTarget(
name: "NodesXcodeTemplatesGenerator",
dependencies: [
"NodesGenerator",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
path: "Sources/Executables/NodesXcodeTemplatesGenerator"),
.target(
name: "Nodes"),
.target(
name: "NodesGenerator",
dependencies: [
"Codextended",
"Yams",
"Stencil",
],
resources: [
.process("Resources"),
]),
.target(
name: "NodesTesting",
dependencies: [
"Nodes",
.product(name: "NeedleFoundation", package: "needle")
]),
.testTarget(
name: "NodesTests",
dependencies: [
"Nodes",
"Nimble",
]),
.testTarget(
name: "NodesGeneratorTests",
dependencies: [
"NodesGenerator",
"Nimble",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
.product(name: "InlineSnapshotTesting", package: "swift-snapshot-testing"),
],
exclude: [
"__Snapshots__",
]),
.testTarget(
name: "NodesTestingTests",
dependencies: [
"NodesTesting",
"Nimble",
]),
]
)
package.targets.forEach { target in
target.swiftSettings = [
.enableExperimentalFeature("StrictConcurrency"),
]
target.plugins = [
.plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLint"),
]
}