@@ -34,7 +34,7 @@ extension Product {
3434 if targetsDarwin {
3535 [
3636 . library( name: " RxCocoa " , targets: [ " RxCocoa " ] ) ,
37- . library( name: " RxCocoa-Dynamic " , type: . dynamic, targets: [ " RxCocoa " ] ) ,
37+ . library( name: " RxCocoa-Dynamic " , type: . dynamic, targets: [ " RxCocoa " ] )
3838 ]
3939 } else {
4040 [ ]
@@ -47,7 +47,7 @@ extension Target {
4747 . target(
4848 name: name,
4949 dependencies: dependencies,
50- resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
50+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ]
5151 )
5252 }
5353}
@@ -63,10 +63,10 @@ extension Target {
6363 dependencies: [
6464 " RxSwift " ,
6565 " RxRelay " ,
66- . target( name: " RxCocoaRuntime " , condition: . when( platforms: [ . iOS, . macOS, . tvOS, . watchOS] ) ) ,
66+ . target( name: " RxCocoaRuntime " , condition: . when( platforms: [ . iOS, . macOS, . tvOS, . watchOS] ) )
6767 ] ,
68- resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
69- ) ,
68+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ]
69+ )
7070 ]
7171 }
7272 }
@@ -79,8 +79,8 @@ extension Target {
7979 . target(
8080 name: " RxCocoaRuntime " ,
8181 dependencies: [ " RxSwift " ] ,
82- resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
83- ) ,
82+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ]
83+ )
8484 ]
8585 }
8686 }
@@ -106,23 +106,23 @@ let package = Package(
106106 . library( name: " RxSwift-Dynamic " , type: . dynamic, targets: [ " RxSwift " ] ) ,
107107 . library( name: " RxRelay-Dynamic " , type: . dynamic, targets: [ " RxRelay " ] ) ,
108108 . library( name: " RxBlocking-Dynamic " , type: . dynamic, targets: [ " RxBlocking " ] ) ,
109- . library( name: " RxTest-Dynamic " , type: . dynamic, targets: [ " RxTest " ] ) ,
109+ . library( name: " RxTest-Dynamic " , type: . dynamic, targets: [ " RxTest " ] )
110110 ] ,
111111 Product . rxCocoaProducts ( ) ,
112- Product . allTests ( ) ,
112+ Product . allTests ( )
113113 ] as [ [ Product ] ] ) . flatMap ( \. self) ,
114114 targets: ( [
115115 [
116- . rxTarget( name: " RxSwift " , dependencies: [ ] ) ,
116+ . rxTarget( name: " RxSwift " , dependencies: [ ] )
117117 ] ,
118118 Target . rxCocoa ( ) ,
119119 Target . rxCocoaRuntime ( ) ,
120120 [
121121 . rxTarget( name: " RxRelay " , dependencies: [ " RxSwift " ] ) ,
122122 . target( name: " RxBlocking " , dependencies: [ " RxSwift " ] ) ,
123- . target( name: " RxTest " , dependencies: [ " RxSwift " ] ) ,
123+ . target( name: " RxTest " , dependencies: [ " RxSwift " ] )
124124 ] ,
125- Target . allTests ( ) ,
125+ Target . allTests ( )
126126 ] as [ [ Target ] ] ) . flatMap ( \. self) ,
127- swiftLanguageVersions: [ . v5] ,
127+ swiftLanguageVersions: [ . v5]
128128)
0 commit comments