summaryrefslogtreecommitdiff
path: root/cli/tools/bundle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/bundle.rs')
-rw-r--r--cli/tools/bundle.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tools/bundle.rs b/cli/tools/bundle.rs
index 5a42f834e..9420d9c8f 100644
--- a/cli/tools/bundle.rs
+++ b/cli/tools/bundle.rs
@@ -45,7 +45,8 @@ pub async fn bundle(
log::debug!(">>>>> bundle START");
let ps = ProcState::from_options(cli_options).await?;
let graph =
- create_graph_and_maybe_check(module_specifier.clone(), &ps).await?;
+ create_graph_and_maybe_check(vec![module_specifier.clone()], &ps)
+ .await?;
let mut paths_to_watch: Vec<PathBuf> = graph
.specifiers()