File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed
Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = "MIT"
1111members = [" lib" ]
1212
1313[workspace .dependencies ]
14- deno_graph = { version = " 0.82 .0" , default-features = false }
14+ deno_graph = { version = " 0.83 .0" , default-features = false }
1515deno_ast = { version = " 0.42.0" , features = [" transpiling" ] }
1616import_map = " 0.20.0"
1717serde = " 1"
Original file line number Diff line number Diff line change @@ -284,6 +284,7 @@ pub async fn build_eszip(
284284 & import_map_url,
285285 deno_graph:: source:: LoadOptions {
286286 is_dynamic : false ,
287+ was_dynamic_root : false ,
287288 cache_setting : deno_graph:: source:: CacheSetting :: Use ,
288289 maybe_checksum : None ,
289290 } ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ async fn main() {
3131 & import_map_url,
3232 deno_graph:: source:: LoadOptions {
3333 is_dynamic : false ,
34+ was_dynamic_root : false ,
3435 cache_setting : CacheSetting :: Use ,
3536 maybe_checksum : None ,
3637 } ,
Original file line number Diff line number Diff line change @@ -2526,6 +2526,7 @@ mod tests {
25262526 & Url :: parse ( "file:///import_map.json" ) . unwrap ( ) ,
25272527 LoadOptions {
25282528 is_dynamic : false ,
2529+ was_dynamic_root : false ,
25292530 cache_setting : CacheSetting :: Use ,
25302531 maybe_checksum : None ,
25312532 } ,
@@ -2606,6 +2607,7 @@ mod tests {
26062607 & Url :: parse ( "file:///import_map.json" ) . unwrap ( ) ,
26072608 LoadOptions {
26082609 is_dynamic : false ,
2610+ was_dynamic_root : false ,
26092611 cache_setting : CacheSetting :: Use ,
26102612 maybe_checksum : None ,
26112613 } ,
@@ -2675,6 +2677,7 @@ mod tests {
26752677 & Url :: parse ( "file:///deno.jsonc" ) . unwrap ( ) ,
26762678 LoadOptions {
26772679 is_dynamic : false ,
2680+ was_dynamic_root : false ,
26782681 cache_setting : CacheSetting :: Use ,
26792682 maybe_checksum : None ,
26802683 } ,
@@ -2755,6 +2758,7 @@ mod tests {
27552758 & Url :: parse ( "file:///deno.jsonc" ) . unwrap ( ) ,
27562759 LoadOptions {
27572760 is_dynamic : false ,
2761+ was_dynamic_root : false ,
27582762 cache_setting : CacheSetting :: Use ,
27592763 maybe_checksum : None ,
27602764 } ,
You can’t perform that action at this time.
0 commit comments