deno/cli/tools/mod.rs
Bartek Iwańczuk 9eaa1fb71d
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
2020-11-19 19:19:34 +01:00

10 lines
192 B
Rust

// 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;