diff options
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 39a1def90..f83695952 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -22,7 +22,6 @@ import * as fsEvents from "internal:runtime/40_fs_events.js"; import * as process from "internal:runtime/40_process.js"; import * as signals from "internal:runtime/40_signals.js"; import * as tty from "internal:runtime/40_tty.js"; -import * as spawn from "internal:runtime/40_spawn.js"; // TODO(bartlomieju): this is funky we have two `http` imports import * as httpRuntime from "internal:runtime/40_http.js"; @@ -148,9 +147,9 @@ const denoNs = { consoleSize: tty.consoleSize, gid: os.gid, uid: os.uid, - Command: spawn.Command, + Command: process.Command, // TODO(bartlomieju): why is this exported? - ChildProcess: spawn.ChildProcess, + ChildProcess: process.ChildProcess, }; const denoNsUnstable = { |