From b9c0e7cd550ab14fa7da7e33ed87cbeeeb9785a0 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sat, 1 Jul 2023 23:52:30 +0100 Subject: Reland "fix(cli): don't store blob and data urls in the module cache" (#18581) Relands #18261 now that https://github.com/lucacasonato/esbuild_deno_loader/pull/54 is landed and used by fresh. Fixes #18260. --- ext/web/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/web/lib.rs') diff --git a/ext/web/lib.rs b/ext/web/lib.rs index af213b5be..374815804 100644 --- a/ext/web/lib.rs +++ b/ext/web/lib.rs @@ -29,6 +29,7 @@ use std::borrow::Cow; use std::cell::RefCell; use std::fmt; use std::path::PathBuf; +use std::sync::Arc; use std::usize; use crate::blob::op_blob_create_object_url; @@ -110,7 +111,7 @@ deno_core::extension!(deno_web, "15_performance.js", ], options = { - blob_store: BlobStore, + blob_store: Arc, maybe_location: Option, }, state = |state, options| { -- cgit v1.2.3