diff options
author | William Tetlow <9057181+williamtetlow@users.noreply.github.com> | 2022-02-15 12:33:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 18:03:46 +0530 |
commit | 7b893bd57f2f013c4a11e1e9f0ba435a3cfc96c0 (patch) | |
tree | 41bc082445edd7c18ec2586050db110a8393c747 /cli/tsc.rs | |
parent | 760f4c9e2427e87815a8e59b0807693c8dcb623a (diff) |
feat(cli): Replace bundling with eszip in deno compile (#13563)
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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), |