From be15cf285dbf3a7b3025d34cb80e87e54a55dd93 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Fri, 23 Oct 2020 12:31:49 +0100 Subject: feat(cli): Add deno cache --test and --worker (#7920) --- core/module_specifier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/module_specifier.rs') diff --git a/core/module_specifier.rs b/core/module_specifier.rs index 82452c067..aec568d47 100644 --- a/core/module_specifier.rs +++ b/core/module_specifier.rs @@ -149,7 +149,7 @@ impl ModuleSpecifier { /// Converts a string representing a relative or absolute path into a /// ModuleSpecifier. A relative path is considered relative to the current /// working directory. - fn resolve_path( + pub fn resolve_path( path_str: &str, ) -> Result { let path = current_dir().unwrap().join(path_str); -- cgit v1.2.3