summaryrefslogtreecommitdiff
path: root/cli/js.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-01-25 06:15:01 +1100
committerRyan Dahl <ry@tinyclouds.org>2020-01-24 14:15:01 -0500
commit950537e8ef6e54c409a7fcafa0b087e68988d9ef (patch)
tree46162f11adc5a6e71c4c681ffe7949ad7bc98fb8 /cli/js.rs
parent8bc639a23e141d350e35ea112a4a9be2ea536fe6 (diff)
Break out runtime lib to main and worker (#3771)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/js.rs')
-rw-r--r--cli/js.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/js.rs b/cli/js.rs
index 8f57adb4d..57516a239 100644
--- a/cli/js.rs
+++ b/cli/js.rs
@@ -16,7 +16,8 @@ pub static COMPILER_SNAPSHOT_MAP: &[u8] =
pub static COMPILER_SNAPSHOT_DTS: &[u8] =
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.d.ts"));
-pub static DENO_RUNTIME: &str = include_str!("js/lib.deno_runtime.d.ts");
+pub static DENO_NS_LIB: &str = include_str!("js/lib.deno.d.ts");
+pub static DENO_MAIN_LIB: &str = include_str!("js/lib.deno_main.d.ts");
#[test]
fn cli_snapshot() {