diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/cli/main.rs b/cli/main.rs index 3a4cc3c37..23f073a7d 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -492,13 +492,15 @@ async fn create_graph_and_maybe_check( let graph = Arc::new( deno_graph::create_graph( vec![(root, deno_graph::ModuleKind::Esm)], - false, - maybe_imports, &mut cache, - maybe_resolver, - maybe_locker, - Some(&*analyzer), - None, + deno_graph::GraphOptions { + is_dynamic: false, + imports: maybe_imports, + resolver: maybe_resolver, + locker: maybe_locker, + module_analyzer: Some(&*analyzer), + reporter: None, + }, ) .await, ); |