From 7afa3aceb04e6b2c8820b7326d6f648db6b571c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 4 Mar 2023 20:39:48 -0400 Subject: refactor(runtime): factor out deno_io extension crate (#18001) This is a prerequisite to factor out FS ops to a separate crate. --- runtime/js/40_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/js/40_process.js') 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; -- cgit v1.2.3