diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-24 17:43:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 21:43:34 +0000 |
commit | f3284529f1689f1294929eb17c55ddf088f3d3bb (patch) | |
tree | 535046cd96db3a39719f3ca5408bb89d5d0387bf /cli/graph_util.rs | |
parent | 5a7414e16349d6872a94db38955bf89edf621c30 (diff) |
feat(jsr): support importing from jsr via HTTPS specifiers (except for type checking) (#23513)
Closes https://github.com/jsr-io/jsr/issues/322
Diffstat (limited to 'cli/graph_util.rs')
-rw-r--r-- | cli/graph_util.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/graph_util.rs b/cli/graph_util.rs index 8d78da3ed..ac7f8a365 100644 --- a/cli/graph_util.rs +++ b/cli/graph_util.rs @@ -611,7 +611,7 @@ impl ModuleGraphBuilder { graph.build_fast_check_type_graph( deno_graph::BuildFastCheckTypeGraphOptions { - jsr_url_provider: Some(&CliJsrUrlProvider), + jsr_url_provider: &CliJsrUrlProvider, fast_check_cache: fast_check_cache.as_ref().map(|c| c as _), fast_check_dts: false, module_parser: Some(&parser), @@ -969,7 +969,7 @@ pub fn format_range_with_colors(range: &deno_graph::Range) -> String { } #[derive(Debug, Default, Clone, Copy)] -struct CliJsrUrlProvider; +pub struct CliJsrUrlProvider; impl deno_graph::source::JsrUrlProvider for CliJsrUrlProvider { fn url(&self) -> &'static ModuleSpecifier { |