diff options
Diffstat (limited to 'cli/graph_util.rs')
-rw-r--r-- | cli/graph_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/graph_util.rs b/cli/graph_util.rs index ba90245f8..62db0a82c 100644 --- a/cli/graph_util.rs +++ b/cli/graph_util.rs @@ -597,7 +597,7 @@ pub fn error_for_any_npm_specifier( .specifiers() .filter_map(|(_, r)| match r { Ok((specifier, kind, _)) if kind == deno_graph::ModuleKind::External => { - Some(specifier.clone()) + Some(specifier) } _ => None, }) |