Skip to content

Commit 2939ba1

Browse files
authored
0.22.0 (#80)
1 parent 932696e commit 2939ba1

File tree

7 files changed

+98
-74
lines changed

7 files changed

+98
-74
lines changed

Cargo.lock

Lines changed: 52 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "eszip"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["the Deno authors"]
55
edition = "2021"
66
repository = "https://github.com/denoland/eszip"
@@ -22,8 +22,8 @@ path = "src/lib.rs"
2222
[dependencies]
2323
anyhow = "1"
2424
base64 = "0.13.0"
25-
deno_ast = { version = "0.16.0", features = ["transpiling"] }
26-
deno_graph = "0.28.0"
25+
deno_ast = { version = "0.17.0", features = ["transpiling"] }
26+
deno_graph = "0.29.0"
2727
futures = "0.3.19"
2828
serde = "1"
2929
serde_json = "1"

build_npm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { build, emptyDir } from "https://deno.land/x/dnt@0.26.0/mod.ts";
1+
import { build, emptyDir } from "https://deno.land/x/dnt@0.28.0/mod.ts";
22

33
await emptyDir("./npm");
44
Deno.mkdirSync("npm/esm", { recursive: true });

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
},
1212
"tasks": {
13-
"build": "RUSTFLAGS=--cfg=web_sys_unstable_apis deno run -A --unstable https://deno.land/x/wasmbuild@0.7.1/main.ts",
13+
"build": "RUSTFLAGS=--cfg=web_sys_unstable_apis deno run -A --unstable https://deno.land/x/wasmbuild@0.8.3/main.ts",
1414
"node": "deno run -A ./build_npm.ts 0.0.0",
1515
"test": "deno test -A lib/",
1616
"fmt": "deno fmt && cargo fmt --all"

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
1414
[dependencies]
1515
js-sys = { version = "0.3.58" }
1616
web-sys = { version = "0.3.58", features = ["ReadableStreamByobReader"] }
17-
deno_graph = "0.28.0"
17+
deno_graph = "0.29.0"
1818
eszip = { path = "../" }
1919
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"] }
2020
wasm-bindgen-futures = { version = "0.4.31" }

0 commit comments

Comments
 (0)