From 57e95032c898cfdfe795e6924d402fdbe2ae59a8 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 20 Oct 2020 14:10:42 +1100 Subject: feat(cli): add support for bundle --no-check (#8023) Fixes #6686 --- cli/tests/bundle/fixture14.out | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 cli/tests/bundle/fixture14.out (limited to 'cli/tests/bundle/fixture14.out') diff --git a/cli/tests/bundle/fixture14.out b/cli/tests/bundle/fixture14.out new file mode 100644 index 000000000..06e93a7cc --- /dev/null +++ b/cli/tests/bundle/fixture14.out @@ -0,0 +1,25 @@ +const lib = function() { + const a = function() { + const a1 = []; + return { + a: a1 + }; + }(); + const b = function() { + const b1 = []; + return { + b: b1 + }; + }(); + const c = function() { + const c1; + return { + c: c1 + }; + }(); + const mod; + return { + mod + }; +}(); +console.log(lib); -- cgit v1.2.3