diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-11 10:53:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-11 10:53:06 +0100 |
commit | 99a0c6df79b903e4fe72ce066787039bdede3868 (patch) | |
tree | 1c0abdb964a2e052b593dc8fa3e515f76dbc0642 /cli/js/globals.ts | |
parent | 94f4c6807a34a564f567b984e71e36e9cb9c5005 (diff) |
reorg: cli/js/compiler/, move more API to cli/js/web/ (#4310)
- moves compiler implementation to "cli/js/compiler/" directory
- moves more APIs to "cli/js/web":
* "console.ts"
* "console_table.ts"
* "performance.ts"
* "timers.ts"
* "workers.ts"
- removes some dead code from "cli/js/"
Diffstat (limited to 'cli/js/globals.ts')
-rw-r--r-- | cli/js/globals.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/js/globals.ts b/cli/js/globals.ts index 7033afd92..8d122878f 100644 --- a/cli/js/globals.ts +++ b/cli/js/globals.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import * as blob from "./web/blob.ts"; -import * as consoleTypes from "./console.ts"; +import * as consoleTypes from "./web/console.ts"; import * as customEvent from "./web/custom_event.ts"; import * as domTypes from "./web/dom_types.ts"; import * as domFile from "./web/dom_file.ts"; @@ -11,11 +11,11 @@ import * as formData from "./web/form_data.ts"; import * as fetchTypes from "./web/fetch.ts"; import * as headers from "./web/headers.ts"; import * as textEncoding from "./web/text_encoding.ts"; -import * as timers from "./timers.ts"; +import * as timers from "./web/timers.ts"; import * as url from "./web/url.ts"; import * as urlSearchParams from "./web/url_search_params.ts"; -import * as workers from "./workers.ts"; -import * as performanceUtil from "./performance.ts"; +import * as workers from "./web/workers.ts"; +import * as performanceUtil from "./web/performance.ts"; import * as request from "./web/request.ts"; // These imports are not exposed and therefore are fine to just import the |