diff options
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 ea8b596d5..18dd3ffcb 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -140,9 +140,10 @@ fn print_cache_info( fn get_types(unstable: bool) -> String { let mut types = format!( - "{}\n{}\n{}\n{}", + "{}\n{}\n{}\n{}\n{}", crate::js::DENO_NS_LIB, crate::js::DENO_WEB_LIB, + crate::js::DENO_FETCH_LIB, crate::js::SHARED_GLOBALS_LIB, crate::js::WINDOW_LIB, ); |