From 7b893bd57f2f013c4a11e1e9f0ba435a3cfc96c0 Mon Sep 17 00:00:00 2001 From: William Tetlow <9057181+williamtetlow@users.noreply.github.com> Date: Tue, 15 Feb 2022 12:33:46 +0000 Subject: feat(cli): Replace bundling with eszip in deno compile (#13563) Co-authored-by: Divy Srivastava --- cli/tsc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tsc.rs') diff --git a/cli/tsc.rs b/cli/tsc.rs index 0e55d27e2..b679b049e 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -741,7 +741,7 @@ mod tests { let source_path = self.fixtures.join(specifier_text); let response = fs::read_to_string(&source_path) .map(|c| { - Some(deno_graph::source::LoadResponse { + Some(deno_graph::source::LoadResponse::Module { specifier: specifier.clone(), maybe_headers: None, content: Arc::new(c), -- cgit v1.2.3