Skip to content

Commit

Permalink
0.22.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Jul 11, 2022
1 parent 932696e commit 2939ba1
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 74 deletions.
101 changes: 52 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eszip"
version = "0.21.0"
version = "0.22.0"
authors = ["the Deno authors"]
edition = "2021"
repository = "https://github.com/denoland/eszip"
Expand All @@ -22,8 +22,8 @@ path = "src/lib.rs"
[dependencies]
anyhow = "1"
base64 = "0.13.0"
deno_ast = { version = "0.16.0", features = ["transpiling"] }
deno_graph = "0.28.0"
deno_ast = { version = "0.17.0", features = ["transpiling"] }
deno_graph = "0.29.0"
futures = "0.3.19"
serde = "1"
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { build, emptyDir } from "https://deno.land/x/dnt@0.26.0/mod.ts";
import { build, emptyDir } from "https://deno.land/x/dnt@0.28.0/mod.ts";

await emptyDir("./npm");
Deno.mkdirSync("npm/esm", { recursive: true });
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"tasks": {
"build": "RUSTFLAGS=--cfg=web_sys_unstable_apis deno run -A --unstable https://deno.land/x/wasmbuild@0.7.1/main.ts",
"build": "RUSTFLAGS=--cfg=web_sys_unstable_apis deno run -A --unstable https://deno.land/x/wasmbuild@0.8.3/main.ts",
"node": "deno run -A ./build_npm.ts 0.0.0",
"test": "deno test -A lib/",
"fmt": "deno fmt && cargo fmt --all"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ crate-type = ["cdylib"]
[dependencies]
js-sys = { version = "0.3.58" }
web-sys = { version = "0.3.58", features = ["ReadableStreamByobReader"] }
deno_graph = "0.28.0"
deno_graph = "0.29.0"
eszip = { path = "../" }
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4.31" }
Expand Down
Loading

0 comments on commit 2939ba1

Please sign in to comment.