diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-03-12 21:23:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:23:59 +0100 |
commit | 0770449c938cdd0edbadaf1e87e460b21fc1b4ef (patch) | |
tree | 649807f55ed9e03f1d1cd5291295e8d4ff5345da /cli/main.rs | |
parent | e83ff62ccbe33ad9c19cb9cab9154b6767d6d74b (diff) |
refactor: move Console to op_crates/console (#9770)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 8d685c6db..1931c62db 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -278,8 +278,9 @@ fn print_cache_info( pub fn get_types(unstable: bool) -> String { let mut types = format!( - "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}", + "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}", crate::tsc::DENO_NS_LIB, + crate::tsc::DENO_CONSOLE_LIB, crate::tsc::DENO_URL_LIB, crate::tsc::DENO_WEB_LIB, crate::tsc::DENO_FETCH_LIB, |