@@ -24,7 +24,7 @@ let package = Package(
2424 . library( name: " RemoteNotificationsClient " , targets: [ " RemoteNotificationsClient " ] ) ,
2525 . library( name: " UIApplicationClient " , targets: [ " UIApplicationClient " ] ) ,
2626 . library( name: " UserDefaultsClient " , targets: [ " UserDefaultsClient " ] ) ,
27-
27+
2828 . library( name: " AttachmentClient " , targets: [ " AttachmentClient " ] ) ,
2929 . library( name: " AttachmentClientLive " , targets: [ " AttachmentClientLive " ] ) ,
3030 . library( name: " AuthClient " , targets: [ " AuthClient " ] ) ,
@@ -44,7 +44,7 @@ let package = Package(
4444 . library( name: " UserClientLive " , targets: [ " UserClientLive " ] ) ,
4545 . library( name: " WebsocketClient " , targets: [ " WebsocketClient " ] ) ,
4646 . library( name: " WebsocketClientLive " , targets: [ " WebsocketClientLive " ] ) ,
47-
47+
4848 // Views
4949 . library( name: " AuthenticationView " , targets: [ " AuthenticationView " ] ) ,
5050 . library( name: " ChatView " , targets: [ " ChatView " ] ) ,
@@ -55,7 +55,7 @@ let package = Package(
5555 . library( name: " ProfileView " , targets: [ " ProfileView " ] ) ,
5656 . library( name: " TabsView " , targets: [ " TabsView " ] ) ,
5757 . library( name: " SettingsView " , targets: [ " SettingsView " ] ) ,
58-
58+
5959 // Helpers
6060 . library( name: " NotificationHelpers " , targets: [ " NotificationHelpers " ] ) ,
6161 . library( name: " SwiftUIHelpers " , targets: [ " SwiftUIHelpers " ] ) ,
@@ -66,11 +66,11 @@ let package = Package(
6666 dependencies: [
6767 . package ( name: " AWSSDKSwift " , url: " https://github.com/swift-aws/aws-sdk-swift.git " , from: " 4.9.0 " ) ,
6868 . package ( url: " https://github.com/marmelroy/PhoneNumberKit " , . upToNextMajor( from: " 3.3.3 " ) ) ,
69- . package ( url: " https://github.com/pointfreeco/swift-composable-architecture.git " , from: " 0.17.0 " ) ,
69+ . package ( url: " https://github.com/pointfreeco/swift-composable-architecture.git " , from: " 0.17.0 " ) ,
7070 . package ( url: " https://github.com/pointfreeco/composable-core-location " , from: " 0.1.0 " ) ,
7171 . package ( url: " https://github.com/pointfreeco/xctest-dynamic-overlay " , from: " 0.1.0 " ) ,
7272 . package ( url: " https://github.com/AddaMeSPB/CombineContacts.git " , from: " 1.0.0 " ) ,
73- . package ( url: " https://github.com/AddaMeSPB/HttpRequest.git " , from: " 1.0.1 " ) ,
73+ . package ( url: " https://github.com/AddaMeSPB/HttpRequest.git " , from: " 1.0.1 " )
7474 ] ,
7575
7676 targets: [
@@ -81,9 +81,9 @@ let package = Package(
8181 " UserNotificationClient " , " RemoteNotificationsClient " , " NotificationHelpers " ,
8282 " AuthClient " , " AuthClientLive " , " AttachmentClient " , " ChatClient " , " ContactClient " ,
8383 " ConversationClient " , " EventClient " , " UserClient " , " WebsocketClient " ,
84-
84+
8585 " EventView " , " ConversationsView " , " ProfileView " , " TabsView " , " AuthenticationView " ,
86- " SettingsView " ,
86+ " SettingsView "
8787 ] ) ,
8888
8989 . testTarget(
@@ -118,35 +118,35 @@ let package = Package(
118118 dependencies: [
119119 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " )
120120 ] ) ,
121-
121+
122122 . target(
123123 name: " UserNotificationClient " ,
124124 dependencies: [
125125 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " )
126126 ] ) ,
127-
127+
128128 . target(
129129 name: " UIApplicationClient " ,
130130 dependencies: [
131131 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
132- . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " ) ,
132+ . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " )
133133 ]
134134 ) ,
135135
136136 . target(
137137 name: " UserDefaultsClient " ,
138138 dependencies: [
139139 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
140- . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " ) ,
140+ . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " )
141141 ]
142142 ) ,
143-
143+
144144 . target(
145145 name: " CoreDataClient " ,
146146 dependencies: [
147- " CoreDataStore " , " ContactClient " , " ContactClientLive " , " SharedModels " ,
147+ " CoreDataStore " , " ContactClient " , " ContactClientLive " , " SharedModels "
148148 ] ) ,
149-
149+
150150 . target(
151151 name: " AttachmentClient " ,
152152 dependencies: [
@@ -204,24 +204,23 @@ let package = Package(
204204 name: " UserClient " ,
205205 dependencies: [ " SharedModels " , " HttpRequest " , " KeychainService " , " InfoPlist " ] ) ,
206206 . target( name: " UserClientLive " , dependencies: [ " UserClient " ] ) ,
207-
207+
208208 . target(
209209 name: " WebsocketClient " ,
210210 dependencies: [ " FoundationExtension " , " HttpRequest " , " SharedModels " , " InfoPlist " , " KeychainService " ] ) ,
211211 . target(
212212 name: " WebsocketClientLive " ,
213213 dependencies: [ " WebsocketClient " ] ) ,
214-
214+
215215 // Views
216216 . target(
217217 name: " AuthenticationView " ,
218218 dependencies: [
219219 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
220220 " PhoneNumberKit " , " SharedModels " , " AuthClient " , " KeychainService " ,
221- " HttpRequest " , " AuthClientLive " ,
221+ " HttpRequest " , " AuthClientLive "
222222 ] ) ,
223223
224-
225224 . target(
226225 name: " TabsView " ,
227226 dependencies: [
@@ -244,7 +243,7 @@ let package = Package(
244243 " WebsocketClientLive "
245244 ]
246245 ) ,
247-
246+
248247 . target(
249248 name: " ConversationsView " ,
250249 dependencies: [
@@ -257,7 +256,7 @@ let package = Package(
257256 " ContactClient " , " ContactClientLive " , " ContactsView " , " CoreDataClient "
258257 ]
259258 ) ,
260-
259+
261260 . target(
262261 name: " ContactsView " ,
263262 dependencies: [
@@ -268,7 +267,7 @@ let package = Package(
268267 " CoreDataStore " , " CoreDataClient " ,
269268 " ChatView " , " ComposableArchitectureHelpers "
270269 ] ) ,
271-
270+
272271 . target(
273272 name: " EventView " ,
274273 dependencies: [
@@ -278,18 +277,18 @@ let package = Package(
278277 " PathMonitorClient " , " WebsocketClient " , " ConversationClient " ,
279278 " SwiftUIExtension " , " FoundationExtension " , " AsyncImageLoder " ,
280279 " HttpRequest " , " KeychainService " , " ChatClient " ,
281- " PathMonitorClientLive " , " EventClientLive " , " ComposableArchitectureHelpers " ,
280+ " PathMonitorClientLive " , " EventClientLive " , " ComposableArchitectureHelpers "
282281 ]
283282 ) ,
284-
283+
285284 . target(
286285 name: " EventForm " ,
287286 dependencies: [
288287 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
289- " SharedModels " , " EventClient " , " InfoPlist " ,
288+ " SharedModels " , " EventClient " , " InfoPlist "
290289 ]
291290 ) ,
292-
291+
293292 . target(
294293 name: " ProfileView " ,
295294 dependencies: [
@@ -299,35 +298,35 @@ let package = Package(
299298 " SwiftUIExtension " , " FoundationExtension " , " AsyncImageLoder " ,
300299 " HttpRequest " , " KeychainService " , " AuthenticationView " ,
301300 " AttachmentClientLive " , " AuthClientLive " , " UserClientLive " ,
302- " EventClientLive " ,
301+ " EventClientLive "
303302 ]
304303 ) ,
305-
304+
306305 . target(
307306 name: " SettingsView " ,
308307 dependencies: [
309308 " UIApplicationClient " , " UserDefaultsClient " ,
310309 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
311- . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " ) ,
310+ . product( name: " XCTestDynamicOverlay " , package : " xctest-dynamic-overlay " )
312311 ]
313312 ) ,
314-
313+
315314 // Helpers
316315 . target(
317316 name: " NotificationHelpers " ,
318317 dependencies: [
319318 " UserNotificationClient " , " RemoteNotificationsClient " ,
320- . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " ) ,
319+ . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " )
321320 ]
322321 ) ,
323-
322+
324323 . target( name: " SwiftUIHelpers " ) ,
325324 . target( name: " CombineHelpers " ) ,
326325 . target(
327326 name: " ComposableArchitectureHelpers " ,
328327 dependencies: [
329328 . product( name: " ComposableArchitecture " , package : " swift-composable-architecture " )
330329 ]
331- ) ,
330+ )
332331 ]
333332)
0 commit comments