-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
206 lines (204 loc) · 8.53 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// swift-tools-version: 5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FootballTables",
platforms: [.iOS(.v14)],
products: [
.library(
name: "App",
targets: ["App"]
),
.library(
name: "MatchDashboardView",
targets: ["MatchDashboardView"]
),
.library(
name: "StandingDashboardView",
targets: ["StandingDashboardView"]
),
.library(
name: "MyTeamsDashboardView",
targets: ["MyTeamsDashboardView"]
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", .upToNextMajor(from: "0.28.1")),
.package(url: "https://github.com/SnapKit/SnapKit", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/Thieurom/FootballDataClient", .upToNextMajor(from: "0.3.0")),
.package(url: "https://github.com/SDWebImage/SDWebImageSVGCoder", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/CombineCommunity/CombineExt", .upToNextMajor(from: "1.5.1"))
],
targets: [
.target(
name: "CommonExtensions",
dependencies: []
),
.target(
name: "CommonUI",
dependencies: [
.target(name: "CommonExtensions"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "Models",
dependencies: [
.product(name: "FootballDataClient", package: "FootballDataClient")
]
),
.target(
name: "ComposableExtensions",
dependencies: [
.product(name: "ComposableArchitecture", package: "swift-composable-architecture")
]
),
.target(
name: "Theme",
dependencies: []
),
.target(
name: "MatchViewCell",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "ComposableExtensions"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "CompetitionViewCell",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "ComposableExtensions"),
.target(name: "Theme"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SDWebImageSVGCoder", package: "SDWebImageSVGCoder"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "FollowingTeamViewCell",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "ComposableExtensions"),
.target(name: "Models"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "SDWebImageSVGCoder", package: "SDWebImageSVGCoder"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "CompetitionMatchView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "CommonUI"),
.target(name: "ComposableExtensions"),
.target(name: "MatchViewCell"),
.target(name: "Models"),
.product(name: "CombineExt", package: "CombineExt"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "SectionHeaderView",
dependencies: [
.target(name: "CommonExtensions"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "TeamView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "CommonUI"),
.target(name: "ComposableExtensions"),
.target(name: "MatchViewCell"),
.target(name: "Models"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SDWebImageSVGCoder", package: "SDWebImageSVGCoder"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "CompetitionStandingView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "ComposableExtensions"),
.target(name: "Models"),
.target(name: "TeamView"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SDWebImageSVGCoder", package: "SDWebImageSVGCoder"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "MatchDashboardView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "CommonUI"),
.target(name: "CompetitionMatchView"),
.target(name: "CompetitionViewCell"),
.target(name: "ComposableExtensions"),
.target(name: "MatchViewCell"),
.target(name: "Models"),
.product(name: "CombineExt", package: "CombineExt"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "StandingDashboardView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "CommonUI"),
.target(name: "CompetitionStandingView"),
.target(name: "CompetitionViewCell"),
.target(name: "ComposableExtensions"),
.target(name: "MatchViewCell"),
.target(name: "Models"),
.target(name: "Theme"),
.target(name: "SectionHeaderView"),
.product(name: "CombineExt", package: "CombineExt"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "MyTeamsDashboardView",
dependencies: [
.target(name: "CommonExtensions"),
.target(name: "CommonUI"),
.target(name: "ComposableExtensions"),
.target(name: "Models"),
.target(name: "Theme"),
.target(name: "TeamView"),
.target(name: "FollowingTeamViewCell"),
.product(name: "CombineExt", package: "CombineExt"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient"),
.product(name: "SnapKit", package: "SnapKit")
]
),
.target(
name: "App",
dependencies: [
.target(name: "ComposableExtensions"),
.target(name: "MatchDashboardView"),
.target(name: "Models"),
.target(name: "MyTeamsDashboardView"),
.target(name: "StandingDashboardView"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "FootballDataClient", package: "FootballDataClient")
]
)
]
)