diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-04-23 13:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 13:37:09 +0200 |
commit | 0cef6aca86af713692537703604ad89377e445e3 (patch) | |
tree | ad44e12f1c067210c455597d713aab90999ac87f /cli | |
parent | 8a416a5ba22bb8b9e6d9eb48e78a167fdea6d64c (diff) |
chore: update dependencies (#10325)
This updates swc_* crates to latest, and various other deps.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 6 | ||||
-rw-r--r-- | cli/tests/bundle/fixture02.out | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 10083fc3b..1de4f9c59 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -69,9 +69,9 @@ semver-parser = "0.10.2" serde = { version = "1.0.125", features = ["derive"] } shell-escape = "0.1.5" sourcemap = "6.0.1" -swc_bundler = "0.32.0" -swc_common = { version = "0.10.15", features = ["sourcemap"] } -swc_ecmascript = { version = "0.31.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } +swc_bundler = "0.32.5" +swc_common = { version = "0.10.17", features = ["sourcemap"] } +swc_ecmascript = { version = "0.31.3", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } tempfile = "3.2.0" termcolor = "1.1.2" text-size = "1.1.0" diff --git a/cli/tests/bundle/fixture02.out b/cli/tests/bundle/fixture02.out index b3544182b..5c502e2f0 100644 --- a/cli/tests/bundle/fixture02.out +++ b/cli/tests/bundle/fixture02.out @@ -3,8 +3,8 @@ class C { } const mod = function() { return { - c: c, - default: C + default: C, + c: c }; }(); const b = "b"; |