From 32cbcfe4e9943a0318c497188e045d23c5f6703a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 12 Jan 2020 14:53:32 +0100 Subject: don't include assets in binary (#3661) --- cli/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/lib.rs') diff --git a/cli/lib.rs b/cli/lib.rs index 1b906e620..a57f224e2 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -146,7 +146,7 @@ fn create_worker_and_state( } fn types_command() { - let content = deno_typescript::get_asset("lib.deno_runtime.d.ts").unwrap(); + let content = include_str!("./js/lib.deno_runtime.d.ts"); println!("{}", content); } -- cgit v1.2.3