diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2020-03-05 13:05:41 +0100 |
---|---|---|
committer | Bartek Iwańczuk <biwanczuk@gmail.com> | 2020-03-05 18:48:55 +0100 |
commit | 2e590072148c85bbc479ab49aa9556b0a2cfaff2 (patch) | |
tree | 89747e7b6762158e35f9120ca0ef0fa14991ae34 /cli/js/compiler_bundler.ts | |
parent | 9b59ed7c7907c5f365e72b5c5a74114eb8ff1488 (diff) |
move Web APIs to cli/js/web/
Diffstat (limited to 'cli/js/compiler_bundler.ts')
-rw-r--r-- | cli/js/compiler_bundler.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/compiler_bundler.ts b/cli/js/compiler_bundler.ts index a7a021470..3a9d3a212 100644 --- a/cli/js/compiler_bundler.ts +++ b/cli/js/compiler_bundler.ts @@ -2,11 +2,11 @@ import { SYSTEM_LOADER } from "./compiler_bootstrap.ts"; import { - assert, commonPath, normalizeString, CHAR_FORWARD_SLASH -} from "./util.ts"; +} from "./compiler_util.ts"; +import { assert } from "./util.ts"; /** Local state of what the root exports are of a root module. */ let rootExports: string[] | undefined; |