diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-23 09:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 09:54:22 -0400 |
commit | 53dac7451bbdd527aa91e01653b678547624fc39 (patch) | |
tree | c43dbc34fd4ada4249064aab2086ab64b276a460 /cli/proc_state.rs | |
parent | 5edcd9dd355483df6b9a8c34ca94f3f54d672b9e (diff) |
chore: remove all `pub(crate)`s from the cli crate (#14083)
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, |