File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ let package = Package(
10
10
. executable(
11
11
name: " WebAPIKitDemo " ,
12
12
targets: [ " WebAPIKitDemo " ]
13
- ) ,
14
- . library(
15
- name: " ECMAScript " ,
16
- targets: [ " ECMAScript " ]
17
13
) ,
18
14
. library(
19
15
name: " WebAPIBase " ,
@@ -63,6 +59,11 @@ let package = Package(
63
59
name: " FileSystem " ,
64
60
targets: [ " FileSystem " ]
65
61
) ,
62
+ // This support library should be moved to JavaScriptKit
63
+ . library(
64
+ name: " ECMAScript " ,
65
+ targets: [ " ECMAScript " ]
66
+ ) ,
66
67
. executable( name: " WebIDLToSwift " , targets: [ " WebIDLToSwift " ] ) ,
67
68
] ,
68
69
dependencies: [
@@ -140,4 +141,4 @@ let package = Package(
140
141
dependencies: [ " DOM " ]
141
142
) ,
142
143
]
143
- )
144
+ )
Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ func generateManifest(_ modules: [Module]) -> String {
24
24
"""#
25
25
} . joined ( separator: " \n " )
26
26
)
27
+ // This support library should be moved to JavaScriptKit
28
+ . library(
29
+ name: " ECMAScript " ,
30
+ targets: [ " ECMAScript " ]
31
+ ) ,
27
32
. executable ( name: " WebIDLToSwift " , targets: [ " WebIDLToSwift " ] ) ,
28
33
] ,
29
34
dependencies: [
You can’t perform that action at this time.
0 commit comments