Skip to content

Commit

Permalink
chore: upgrade to deno_graph 0.59 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Oct 24, 2023
1 parent 70e487f commit 411ddba
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 46 deletions.
80 changes: 40 additions & 40 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tasks": {
"test": "deno test --allow-read --allow-net --allow-env --allow-write --allow-run",
"update-snapshots": "deno test --allow-read --allow-net --allow-env --allow-write --allow-run -- --update",
"build": "cp LICENSE js/LICENSE && deno run -A --unstable https://deno.land/x/wasmbuild@0.14.1/main.ts --out js"
"build": "cp LICENSE js/LICENSE && deno run -A --unstable https://deno.land/x/wasmbuild@0.15.1/main.ts --out js"
},
"exclude": [
"lib",
Expand Down
4 changes: 2 additions & 2 deletions rs-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = "MIT"
[dependencies]
anyhow = "1.0.44"
base64 = "0.13.0"
deno_ast = { version = "0.30.0", features = ["bundler", "codegen", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "visit", "transpiling"] }
deno_graph = "0.58.0"
deno_ast = { version = "0.31.0", features = ["bundler", "codegen", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "visit", "transpiling"] }
deno_graph = "0.59.0"
escape8259 = "0.5.2"
futures = "0.3.17"
import_map = "0.15.0"
Expand Down
6 changes: 3 additions & 3 deletions wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ name = "emit"
anyhow = "1.0.44"
base64 = "0.13.0"
deno_emit = { path = "../rs-lib" }
js-sys = { version = "=0.3.63" }
js-sys = { version = "=0.3.64" }
serde = { version = "1.0.130", features = ["derive", "rc"] }
url = { version = "2.3.1" }
wasm-bindgen = { version = "=0.2.86" }
wasm-bindgen-futures = { version = "=0.4.36" }
wasm-bindgen = { version = "=0.2.87" }
wasm-bindgen-futures = { version = "=0.4.37" }
serde-wasm-bindgen = "0.5.0"
1 change: 1 addition & 0 deletions wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ impl From<CompilerOptions> for EmitOptions {
};

Self {
precompile_jsx: false,
emit_metadata: options.emit_decorator_metadata,
imports_not_used_as_values,
inline_source_map: options.inline_source_map,
Expand Down

0 comments on commit 411ddba

Please sign in to comment.