deno/cli/tools/mod.rs
Luca Casonato a44349dfdf
feat: denort binary (#9041)
This commit adds new binary target called "denort".

It is a "lite" version of "deno" binary that can only execute
code embedded inside the binary itself.

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-01-08 03:08:51 +01:00

11 lines
212 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 standalone;
pub mod test_runner;
pub mod upgrade;