From 6c42ded0970826aaf424f3ae572cb35a4ff212dc Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Sat, 6 Oct 2018 00:13:22 +1000 Subject: Hide compiler module (#909) Fixes #876 --- js/deno.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'js/deno.ts') 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; -- cgit v1.2.3