mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
9eaa1fb71d
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
9 lines
192 B
Rust
9 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;
|