summaryrefslogtreecommitdiff
path: root/cli/build.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-06-10 15:26:10 +0200
committerGitHub <noreply@github.com>2021-06-10 15:26:10 +0200
commit6091ea098a86cafb38aed3228a64ad96a046c817 (patch)
tree1533eb7872db17abe2d88a8db32c4719d403ba4d /cli/build.rs
parentfb20a6af761c8eb61a046b4c70e28061923e36ca (diff)
refactor: merge deno_file crate into deno_web (#10914)
This refactor makes it so there's one less crate to publish on each release.
Diffstat (limited to 'cli/build.rs')
-rw-r--r--cli/build.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/build.rs b/cli/build.rs
index 053d05395..c88c00376 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -59,7 +59,6 @@ fn create_compiler_snapshot(
op_crate_libs.insert("deno.console", deno_console::get_declaration());
op_crate_libs.insert("deno.url", deno_url::get_declaration());
op_crate_libs.insert("deno.web", deno_web::get_declaration());
- op_crate_libs.insert("deno.file", deno_file::get_declaration());
op_crate_libs.insert("deno.fetch", deno_fetch::get_declaration());
op_crate_libs.insert("deno.webgpu", deno_webgpu::get_declaration());
op_crate_libs.insert("deno.websocket", deno_websocket::get_declaration());
@@ -276,10 +275,6 @@ fn main() {
deno_web::get_declaration().display()
);
println!(
- "cargo:rustc-env=DENO_FILE_LIB_PATH={}",
- deno_file::get_declaration().display()
- );
- println!(
"cargo:rustc-env=DENO_FETCH_LIB_PATH={}",
deno_fetch::get_declaration().display()
);