diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-25 21:42:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 01:42:18 +0000 |
commit | eb283c43f5601df54b7086578daef9793a36a56f (patch) | |
tree | 8fcb8eb46a373f1d24e0e9b10420b2c5961239ef /cli/standalone/mod.rs | |
parent | 09cc473f3b3807d79a75eda3a744e4d9d7e34f3f (diff) |
refactor: bump deno_graph to 0.79 (#24337)
No fixes in this to my knowledge. Just an upgrade. The functionality
here will be used in a different PR.
Diffstat (limited to 'cli/standalone/mod.rs')
-rw-r--r-- | cli/standalone/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/standalone/mod.rs b/cli/standalone/mod.rs index e2a53e468..24ba7c9db 100644 --- a/cli/standalone/mod.rs +++ b/cli/standalone/mod.rs @@ -472,7 +472,7 @@ pub async fn run( npm_resolver.clone().into_npm_resolver(), )); let maybe_import_map = metadata.maybe_import_map.map(|(base, source)| { - Arc::new(parse_from_json(&base, &source).unwrap().import_map) + Arc::new(parse_from_json(base, &source).unwrap().import_map) }); let cli_node_resolver = Arc::new(CliNodeResolver::new( Some(cjs_resolutions.clone()), |