From fe368b72c1dd2f2d17b7b7e5965b9e3d9ca61c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 7 Mar 2023 05:13:44 -0400 Subject: refactor: Add "deno_fs" extension crate (#18040) This commit factors out APIs related to file system from "runtime/" to a separate "deno_fs" extension crate. --- cli/build.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli') diff --git a/cli/build.rs b/cli/build.rs index 3baafb522..9d133d99a 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -343,6 +343,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) { false, // No --unstable. ), deno_io::init(Default::default()), + deno_fs::init::(false), deno_node::init::(None), // No --unstable. deno_node::init_polyfill(), deno_ffi::init::(false), -- cgit v1.2.3