diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-19 19:19:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 19:19:34 +0100 |
commit | 9eaa1fb71d03679367ebca0e0361fa0e47a1274f (patch) | |
tree | c57776a00293b4acae95773108315d1f827bf43c /cli/tools/mod.rs | |
parent | 21e8ff6fc1d88d85b9a6235324eb0f70066ee038 (diff) |
refactor(cli): move tooling to cli/tools/ (#8424)
This commit moves following tools into a single "tools"
module located at "cli/tools/mod.rs":
- formatter
- linter
- test runner
- coverage collector
- installer
- binary upgrader
- repl
Diffstat (limited to 'cli/tools/mod.rs')
-rw-r--r-- | cli/tools/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs new file mode 100644 index 000000000..be76968fb --- /dev/null +++ b/cli/tools/mod.rs @@ -0,0 +1,9 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +pub mod coverage; +pub mod fmt; +pub mod installer; +pub mod lint; +pub mod repl; +pub mod test_runner; +pub mod upgrade; |