diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-08-07 16:55:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 16:55:02 +0200 |
commit | 41215eb29c50cdf7048f7431076ccc986b514f6d (patch) | |
tree | 519d44a39dbd01e6175abf9302f105d67ce2cc52 /cli/main.rs | |
parent | d7dcbab3efeeac5233c9cedb6edacc7202515449 (diff) |
Op crate for Web APIs (#6906)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
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 97f3161df..728a23db0 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -287,8 +287,9 @@ async fn print_file_info( fn get_types(unstable: bool) -> String { let mut types = format!( - "{}\n{}\n{}", + "{}\n{}\n{}\n{}", crate::js::DENO_NS_LIB, + crate::js::DENO_WEB_LIB, crate::js::SHARED_GLOBALS_LIB, crate::js::WINDOW_LIB, ); |