Skip to content

Commit 3a6d5f4

Browse files
committed
Revert "Bump JSKit, fix BigInt support"
This reverts commit f6f0fed.
1 parent 9cdaf37 commit 3a6d5f4

File tree

144 files changed

+7626
-2539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+7626
-2539
lines changed

Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,35 @@ let package = Package(
88
products: [
99
.executable(
1010
name: "DOMKitDemo",
11-
targets: ["DOMKitDemo"]
12-
),
11+
targets: ["DOMKitDemo"]),
1312
.library(
1413
name: "DOMKit",
15-
targets: ["DOMKit"]
16-
),
14+
targets: ["DOMKit"]),
1715
.library(name: "WebIDL", targets: ["WebIDL"]),
1816
.executable(name: "WebIDLToSwift", targets: ["WebIDLToSwift"]),
1917
],
2018
dependencies: [
2119
.package(
2220
url: "https://github.com/swiftwasm/JavaScriptKit.git",
23-
.branch("main")
24-
),
21+
.branch("main")),
2522
],
2623
targets: [
2724
.target(
2825
name: "DOMKitDemo",
29-
dependencies: ["DOMKit"]
30-
),
26+
dependencies: ["DOMKit"]),
3127
.target(
3228
name: "DOMKit",
3329
dependencies: ["ECMAScript", "JavaScriptKit", .product(name: "JavaScriptEventLoop", package: "JavaScriptKit")]),
3430
// This support library should be moved to JavaScriptKit
3531
.target(name: "ECMAScript", dependencies: [
3632
"JavaScriptKit",
37-
.product(name: "JavaScriptEventLoop", package: "JavaScriptKit"),
38-
.product(name: "JavaScriptBigIntSupport", package: "JavaScriptKit"),
39-
]),
33+
.product(name: "JavaScriptEventLoop", package: "JavaScriptKit")]),
4034
.target(name: "WebIDL"),
4135
.target(
4236
name: "WebIDLToSwift",
43-
dependencies: ["WebIDL"]
44-
),
37+
dependencies: ["WebIDL"]),
4538
.testTarget(
4639
name: "DOMKitTests",
47-
dependencies: ["DOMKit"]
48-
),
40+
dependencies: ["DOMKit"]),
4941
]
5042
)

0 commit comments

Comments
 (0)