File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- // swift-tools-version: 5.8
1
+ // swift-tools-version: 5.5
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
4
4
import PackageDescription
@@ -9,17 +9,17 @@ let package = Package(
9
9
products: [
10
10
// Products define the executables and libraries a package produces, making them visible to other packages.
11
11
. library( name: " GybExample " , targets: [ " GybExample " ] ) ,
12
- . plugin( name: " Gyb " , targets: [ " Gyb " ] ) ,
12
+ . plugin( name: " GybPlugin " , targets: [ " GybPlugin " ] ) ,
13
13
] ,
14
14
targets: [
15
15
// Targets are the basic building blocks of a package, defining a module or a test suite.
16
16
// Targets can depend on other targets in this package and products from dependencies.
17
17
. target(
18
18
name: " GybExample " ,
19
- plugins: [ . plugin( name: " Gyb " ) ] ) ,
19
+ plugins: [ . plugin( name: " GybPlugin " ) ] ) ,
20
20
21
21
. plugin(
22
- name: " Gyb " ,
22
+ name: " GybPlugin " ,
23
23
capability: . buildTool( ) ,
24
24
dependencies: [ " gyb " ] ) ,
25
25
@@ -29,6 +29,6 @@ let package = Package(
29
29
30
30
. testTarget(
31
31
name: " GybTests " ,
32
- dependencies: [ " GybExample " , " Gyb " ] )
32
+ dependencies: [ " GybExample " , " GybPlugin " ] )
33
33
]
34
34
)
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ let package = Package(
77
77
// other dependencies
78
78
],
79
79
plugins : [
80
- .plugin (name : " Gyb " , package : " swift-gyb" ),
80
+ .plugin (name : " GybPlugin " , package : " swift-gyb" ),
81
81
]
82
82
),
83
83
// other targets
You can’t perform that action at this time.
0 commit comments