File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,15 @@ import PackageDescription
6
6
let package = Package (
7
7
name: " RichString " ,
8
8
products: [
9
- // Products define the executables and libraries produced by a package, and make them visible to other packages.
10
9
. library(
11
10
name: " RichString " ,
12
- targets: [ " RichString " ] ) ,
11
+ targets: [ " RichString " ] )
13
12
] ,
14
13
dependencies: [
15
14
. package ( url: " https://github.com/Quick/Nimble.git " , from: " 7.0.1 " ) ,
16
- . package ( url: " https://github.com/Quick/Quick.git " , from: " 1.1.0 " ) ,
15
+ . package ( url: " https://github.com/Quick/Quick.git " , from: " 1.1.0 " )
17
16
] ,
18
17
targets: [
19
- // Targets are the basic building blocks of a package. A target can define a module or a test suite.
20
- // Targets can depend on other targets in this package, and on products in packages which this package depends on.
21
18
. target(
22
19
name: " RichString " ,
23
20
dependencies: [ ] ,
@@ -27,7 +24,7 @@ let package = Package(
27
24
name: " RichStringTests " ,
28
25
dependencies: [ " RichString " , " Quick " , " Nimble " ] ,
29
26
path: " RichStringTests " ,
30
- exclude: [ " RichStringTests/iOS " , " RichStringTests/tvOS " , " RichStringTests/watchOS " ] ) ,
27
+ exclude: [ " RichStringTests/iOS " , " RichStringTests/tvOS " , " RichStringTests/watchOS " ] )
31
28
] ,
32
29
swiftLanguageVersions: [ 4 ]
33
30
)
You can’t perform that action at this time.
0 commit comments