Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(npm): cache bust npm specifiers more aggressively #18636

Merged
Prev Previous commit
Next Next commit
Remove leftover code
  • Loading branch information
dsherret committed Apr 8, 2023
commit e7d2da8dcfe5fd607aada3be3e985902e577c03a
2 changes: 1 addition & 1 deletion cli/graph_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ pub async fn build_graph_with_npm_resolution<'a>(
loader: &mut dyn deno_graph::source::Loader,
options: deno_graph::BuildOptions<'a>,
) -> Result<(), AnyError> {
graph.build(roots.clone(), loader, options).await;
graph.build(roots, loader, options).await;

// resolve the dependencies of any pending dependencies
// that were inserted by building the graph
Expand Down