diff options
Diffstat (limited to 'cli/proc_state.rs')
-rw-r--r-- | cli/proc_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index 123c9f262..806bb030b 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -491,7 +491,7 @@ impl ProcState { /// Add the builtin node modules to the graph data. pub async fn prepare_node_std_graph(&self) -> Result<(), AnyError> { let node_std_graph = self - .create_graph(vec![(compat::MODULE_ALL_URL.clone(), ModuleKind::Esm)]) + .create_graph(vec![(node::MODULE_ALL_URL.clone(), ModuleKind::Esm)]) .await?; self.graph_data.write().add_graph(&node_std_graph, false); Ok(()) |