diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-04 20:39:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 00:39:48 +0000 |
commit | 7afa3aceb04e6b2c8820b7326d6f648db6b571c6 (patch) | |
tree | 951ff96a156dee83cd4fd7615e3b422ca0cda448 /runtime/js/40_process.js | |
parent | 4894e500cf8c60c2971d186d6a21b994bf36e7d1 (diff) |
refactor(runtime): factor out deno_io extension crate (#18001)
This is a prerequisite to factor out FS ops to a separate crate.
Diffstat (limited to 'runtime/js/40_process.js')
-rw-r--r-- | runtime/js/40_process.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js index a949e48ed..601c79975 100644 --- a/runtime/js/40_process.js +++ b/runtime/js/40_process.js @@ -3,7 +3,7 @@ const core = globalThis.Deno.core; const ops = core.ops; import { FsFile } from "internal:runtime/js/40_files.js"; -import { readAll } from "internal:runtime/js/12_io.js"; +import { readAll } from "internal:deno_io/12_io.js"; import { pathFromURL } from "internal:runtime/js/06_util.js"; import { assert } from "internal:deno_web/00_infra.js"; const primordials = globalThis.__bootstrap.primordials; |