summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture08.out
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-03-02 13:39:56 +0100
committerGitHub <noreply@github.com>2021-03-02 13:39:56 +0100
commitfaf2e802724be9d493dad232759b76e7253feab0 (patch)
tree50be81b16f237ef7d366ba29f816906488a5bb88 /cli/tests/bundle/fixture08.out
parentbadc88b78a623d66ae86157d44a438c14dd7616a (diff)
chore: upgrade crates (#9632)
Diffstat (limited to 'cli/tests/bundle/fixture08.out')
-rw-r--r--cli/tests/bundle/fixture08.out6
1 files changed, 2 insertions, 4 deletions
diff --git a/cli/tests/bundle/fixture08.out b/cli/tests/bundle/fixture08.out
index 7ddb20077..bfe40aa37 100644
--- a/cli/tests/bundle/fixture08.out
+++ b/cli/tests/bundle/fixture08.out
@@ -1,9 +1,7 @@
+const a1 = "a";
const mod = function() {
- const a = "a";
- const a1 = a;
return {
- a: a
+ a: a1
};
}();
-const a = mod;
export { mod as a };