summaryrefslogtreecommitdiff
path: root/js/main.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-02 13:13:32 -0400
committerGitHub <noreply@github.com>2018-08-02 13:13:32 -0400
commitc7c6203e61cb6bb85051b96eabd6deae7995a787 (patch)
treeef463466f34fd72a4ac5a30eecd3cc94254f321f /js/main.ts
parente30bdb71aa8b9902078e1ed8e7d014a68eb9eb2e (diff)
Source map support (#429)
This change increases size: out/debug/obj/libdeno/from_snapshot.o 19M -> 34M out/release/deno 32M -> 47M
Diffstat (limited to 'js/main.ts')
-rw-r--r--js/main.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/main.ts b/js/main.ts
index 50f73a4c6..81dabab33 100644
--- a/js/main.ts
+++ b/js/main.ts
@@ -20,6 +20,8 @@ function startMsg(cmdId: number): Uint8Array {
/* tslint:disable-next-line:no-default-export */
export default function denoMain() {
+ runtime.setup();
+
// First we send an empty "Start" message to let the privlaged side know we
// are ready. The response should be a "StartRes" message containing the CLI
// argv and other info.