summaryrefslogtreecommitdiff
path: root/cli/tools/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-12-09 09:40:48 -0500
committerGitHub <noreply@github.com>2022-12-09 09:40:48 -0500
commit6541a0a9fd818424688003c617e4a84c3cf7d34d (patch)
tree0a2281e9f119bb992fe34908665a79f5eaddaa77 /cli/tools/mod.rs
parent9daf6e197a642a88d79614fb53888b5bb954463a (diff)
refactor: cleanup main.rs (#16996)
1. Extracts out some code from main.rs 2. Inlines all the `x_command` functions in main.rs
Diffstat (limited to 'cli/tools/mod.rs')
-rw-r--r--cli/tools/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs
index b992a2e9e..595fdd760 100644
--- a/cli/tools/mod.rs
+++ b/cli/tools/mod.rs
@@ -1,6 +1,7 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
pub mod bench;
+pub mod bundle;
pub mod check;
pub mod coverage;
pub mod doc;
@@ -10,6 +11,7 @@ pub mod init;
pub mod installer;
pub mod lint;
pub mod repl;
+pub mod run;
pub mod standalone;
pub mod task;
pub mod test;