summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-10-06 00:13:22 +1000
committerRyan Dahl <ry@tinyclouds.org>2018-10-05 10:13:22 -0400
commit6c42ded0970826aaf424f3ae572cb35a4ff212dc (patch)
tree717fc134fd9cc732121c627d340dae59b5c3a379 /js/deno.ts
parent6a649012bcd780f4b3adfa55647772fce0012fde (diff)
Hide compiler module (#909)
Fixes #876
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts
index 53ca4c009..815a6dc25 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -23,3 +23,8 @@ export { truncateSync, truncate } from "./truncate";
export { FileInfo } from "./file_info";
export { connect, dial, listen, Listener, Conn } from "./net";
export const args: string[] = [];
+
+// Provide the compiler API in an obfuscated way
+import * as compiler from "./compiler";
+// @internal
+export const _compiler = compiler;