diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-02-07 22:09:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 21:09:50 +0000 |
commit | 49af1ab18da02f09e65506c873526c40d005c4ed (patch) | |
tree | 0d8f6028e98907096019500a7e1c717408eeb4e2 /runtime/js/90_deno_ns.js | |
parent | b4aa1530970f7b9cc4e6f2f27e077852c4e178d3 (diff) |
refactor: remove prefix from include_js_files & use extension name (#17683)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 7b791017b..5321bf1d3 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -2,14 +2,14 @@ const core = globalThis.Deno.core; const ops = core.ops; -import * as timers from "internal:ext/web/02_timers.js"; -import * as httpClient from "internal:ext/fetch/22_http_client.js"; -import * as console from "internal:ext/console/02_console.js"; -import * as ffi from "internal:ext/ffi/00_ffi.js"; -import * as net from "internal:ext/net/01_net.js"; -import * as tls from "internal:ext/net/02_tls.js"; -import * as http from "internal:ext/http/01_http.js"; -import * as flash from "internal:ext/flash/01_http.js"; +import * as timers from "internal:deno_web/02_timers.js"; +import * as httpClient from "internal:deno_fetch/22_http_client.js"; +import * as console from "internal:deno_console/02_console.js"; +import * as ffi from "internal:deno_ffi/00_ffi.js"; +import * as net from "internal:deno_net/01_net.js"; +import * as tls from "internal:deno_net/02_tls.js"; +import * as http from "internal:deno_http/01_http.js"; +import * as flash from "internal:deno_flash/01_http.js"; import * as build from "internal:runtime/js/01_build.js"; import * as errors from "internal:runtime/js/01_errors.js"; import * as version from "internal:runtime/js/01_version.js"; |