diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-01-25 06:15:01 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-01-24 14:15:01 -0500 |
commit | 950537e8ef6e54c409a7fcafa0b087e68988d9ef (patch) | |
tree | 46162f11adc5a6e71c4c681ffe7949ad7bc98fb8 /cli/lib.rs | |
parent | 8bc639a23e141d350e35ea112a4a9be2ea536fe6 (diff) |
Break out runtime lib to main and worker (#3771)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
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 4a08f40c6..a650b4d44 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -146,7 +146,7 @@ fn create_worker_and_state( } fn types_command() { - println!("{}", crate::js::DENO_RUNTIME); + println!("{}\n{}", crate::js::DENO_NS_LIB, crate::js::DENO_MAIN_LIB); } fn print_cache_info(worker: MainWorker) { |