Skip to content

Commit

Permalink
chore: deno_graph 0.83 (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn authored Sep 26, 2024
1 parent b396f2b commit a9f340f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
members = ["lib"]

[workspace.dependencies]
deno_graph = { version = "0.82.0", default-features = false }
deno_graph = { version = "0.83.0", default-features = false }
deno_ast = { version = "0.42.0", features = ["transpiling"] }
import_map = "0.20.0"
serde = "1"
Expand Down
1 change: 1 addition & 0 deletions lib/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ pub async fn build_eszip(
&import_map_url,
deno_graph::source::LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: deno_graph::source::CacheSetting::Use,
maybe_checksum: None,
},
Expand Down
1 change: 1 addition & 0 deletions src/examples/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ async fn main() {
&import_map_url,
deno_graph::source::LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: CacheSetting::Use,
maybe_checksum: None,
},
Expand Down
4 changes: 4 additions & 0 deletions src/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2526,6 +2526,7 @@ mod tests {
&Url::parse("file:///import_map.json").unwrap(),
LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: CacheSetting::Use,
maybe_checksum: None,
},
Expand Down Expand Up @@ -2606,6 +2607,7 @@ mod tests {
&Url::parse("file:///import_map.json").unwrap(),
LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: CacheSetting::Use,
maybe_checksum: None,
},
Expand Down Expand Up @@ -2675,6 +2677,7 @@ mod tests {
&Url::parse("file:///deno.jsonc").unwrap(),
LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: CacheSetting::Use,
maybe_checksum: None,
},
Expand Down Expand Up @@ -2755,6 +2758,7 @@ mod tests {
&Url::parse("file:///deno.jsonc").unwrap(),
LoadOptions {
is_dynamic: false,
was_dynamic_root: false,
cache_setting: CacheSetting::Use,
maybe_checksum: None,
},
Expand Down

0 comments on commit a9f340f

Please sign in to comment.