From 40fc5f55ea582755d221a3445a2f5f388845bc23 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 26 Jan 2021 17:00:40 +0100 Subject: chore: update crates (#9251) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0). Co-authored-by: Kitson Kelly Co-authored-by: Bartek IwaƄczuk --- cli/tests/bundle/fixture10.out | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cli/tests/bundle/fixture10.out') diff --git a/cli/tests/bundle/fixture10.out b/cli/tests/bundle/fixture10.out index 209c19612..776aac1ae 100644 --- a/cli/tests/bundle/fixture10.out +++ b/cli/tests/bundle/fixture10.out @@ -1,5 +1,6 @@ +const a = "a"; +const a1 = a; const o = { }; -const a = "a"; -const { a: a1 = a } = o; -console.log(a1); +const { a: a2 = a1 } = o; +console.log(a2); -- cgit v1.2.3