diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-18 15:20:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 09:20:55 -0400 |
commit | 7845740637eb646c0b13dc541f043fd65136fc03 (patch) | |
tree | 8576a376d72ffdfe4ffed983a2bed9e605d20e8b /cli/main.rs | |
parent | cead79f5b8ffd376d339b6e0c30e872bfe6820f6 (diff) |
refactor: deno_fetch op crate (#7524)
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, ); |