Skip to content

Commit

Permalink
fix: deno_ast 0.42 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Aug 30, 2024
1 parent 30c420a commit 934b45c
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 44 deletions.
79 changes: 40 additions & 39 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = "MIT"
members = ["lib"]

[workspace.dependencies]
deno_graph = { version = "0.81.0", default-features = false }
deno_ast = { version = "0.41.2", features = ["transpiling"] }
deno_graph = { version = "0.82.0", default-features = false }
deno_ast = { version = "0.42.0", features = ["transpiling"] }
import_map = "0.20.0"
serde = "1"

Expand Down
4 changes: 2 additions & 2 deletions js/eszip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// CLI utility to build/list/extract/run ESZIPs

import { build, Parser } from "./mod.ts";
import { dirname, join } from "jsr:@std/path@0.223";
import { assertStrictEquals } from "jsr:@std/assert@0.223";
import { dirname, join } from "jsr:@std/path@1";
import { assertStrictEquals } from "jsr:@std/assert@1";

function hasV2Header(bytes: Uint8Array) {
const magicV2 = new TextDecoder().decode(bytes.slice(0, 8));
Expand Down
1 change: 0 additions & 1 deletion lib/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ pub async fn build_eszip(
locker: None,
npm_resolver: None,
reporter: None,
workspace_members: &[],
},
)
.await;
Expand Down

0 comments on commit 934b45c

Please sign in to comment.