diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-02 13:13:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-02 13:13:32 -0400 |
| commit | c7c6203e61cb6bb85051b96eabd6deae7995a787 (patch) | |
| tree | ef463466f34fd72a4ac5a30eecd3cc94254f321f /js/main.ts | |
| parent | e30bdb71aa8b9902078e1ed8e7d014a68eb9eb2e (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.ts | 2 |
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. |
