summaryrefslogtreecommitdiff
path: root/cli/js/deno_unstable.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-05-06 00:19:18 +0200
committerGitHub <noreply@github.com>2020-05-06 00:19:18 +0200
commit2ecdbb62ae8f925b01e3e49f397d439a2f464a21 (patch)
treeca45ddcf322337affdf1bbb8f87139b373d2d93d /cli/js/deno_unstable.ts
parent9cd7d598405f8bf6600775827f870848fd3e120a (diff)
refactor: merge TS compiler into single file (#5091)
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r--cli/js/deno_unstable.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts
index 98e60f665..57d1a0970 100644
--- a/cli/js/deno_unstable.ts
+++ b/cli/js/deno_unstable.ts
@@ -7,7 +7,7 @@ export { linkSync, link } from "./ops/fs/link.ts";
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
export { dir, loadavg, osRelease } from "./ops/os.ts";
export { openPlugin } from "./ops/plugins.ts";
-export { transpileOnly, compile, bundle } from "./compiler/api.ts";
+export { transpileOnly, compile, bundle } from "./compiler_api.ts";
export { applySourceMap, formatDiagnostics } from "./ops/errors.ts";
export { signal, signals, Signal, SignalStream } from "./signals.ts";
export { setRaw } from "./ops/tty.ts";