From 98fc7db47d2ae1d817ac595d7f21138678515474 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 7 Feb 2020 03:30:05 -0500 Subject: Fix deno types | head (#3910) --- cli/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/lib.rs b/cli/lib.rs index 5f98f6f67..a8a314f32 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -124,12 +124,15 @@ fn create_main_worker( } fn types_command() { - println!( + let types = format!( "{}\n{}\n{}", crate::js::DENO_NS_LIB, crate::js::SHARED_GLOBALS_LIB, crate::js::WINDOW_LIB ); + use std::io::Write; + let _r = std::io::stdout().write_all(types.as_bytes()); + // TODO(ry) Only ignore SIGPIPE. Currently ignoring all errors. } fn print_cache_info(state: &GlobalState) { -- cgit v1.2.3