summaryrefslogtreecommitdiff
path: root/cli/args
diff options
context:
space:
mode:
Diffstat (limited to 'cli/args')
-rw-r--r--cli/args/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index f905e186b..d8f553101 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -963,6 +963,9 @@ impl CliOptions {
match self.sub_command() {
DenoSubcommand::Cache(_) => GraphKind::All,
DenoSubcommand::Check(_) => GraphKind::TypesOnly,
+ DenoSubcommand::Install(InstallFlags {
+ kind: InstallKind::Local(_),
+ }) => GraphKind::All,
_ => self.type_check_mode().as_graph_kind(),
}
}