diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-12 14:53:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 14:53:32 +0100 |
commit | 32cbcfe4e9943a0318c497188e045d23c5f6703a (patch) | |
tree | 57dcdef2e2456be219226c22e31344c1f6b85024 /cli/lib.rs | |
parent | 7ed018bb90db172f07c1edf9e349b81ff1fbf13d (diff) |
don't include assets in binary (#3661)
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |