diff options
Diffstat (limited to 'cli/proc_state.rs')
-rw-r--r-- | cli/proc_state.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index 3d5578d32..1db52d25a 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -251,7 +251,7 @@ impl ProcState { /// module before attempting to `load()` it from a `JsRuntime`. It will /// populate `self.graph_data` in memory with the necessary source code, write /// emits where necessary or report any module graph / type checking errors. - pub(crate) async fn prepare_module_load( + pub async fn prepare_module_load( &self, roots: Vec<ModuleSpecifier>, is_dynamic: bool, @@ -486,7 +486,7 @@ impl ProcState { Ok(()) } - pub(crate) fn resolve( + pub fn resolve( &self, specifier: &str, referrer: &str, |