Skip to content

Commit

Permalink
Merge branch 'main' into issue-8670
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Mar 12, 2024
2 parents f545987 + e46dd5a commit a492080
Show file tree
Hide file tree
Showing 39 changed files with 65 additions and 50 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

- **(es/minifier)** Handle cyclic references while dropping unused properties ([#8725](https://github.com/swc-project/swc/issues/8725)) ([102241b](https://github.com/swc-project/swc/commit/102241b812b8e815b59575178193bb71b4264bab))


- **(es/minifier)** Fix evaluation of array literals with `void 0` ([#8733](https://github.com/swc-project/swc/issues/8733)) ([aa0154d](https://github.com/swc-project/swc/commit/aa0154d2d86b0bed7ffed3324c7a650ffe111c93))

### Features


Expand Down Expand Up @@ -1416,9 +1419,6 @@
- **(common)** Make `ahash` optional ([#7816](https://github.com/swc-project/swc/issues/7816)) ([981d7b1](https://github.com/swc-project/swc/commit/981d7b152b2f488a67d42052152db22225f1d094))


- **(es/parser)** Remove needless `unsafe` ([#7818](https://github.com/swc-project/swc/issues/7818)) ([8b809db](https://github.com/swc-project/swc/commit/8b809dbe23cab3db2159979cf1852a69c109f1e0))


- Use `ahash` from `swc_common` in more places ([#7815](https://github.com/swc-project/swc/issues/7815)) ([b43e38d](https://github.com/swc-project/swc/commit/b43e38d3f92bc889e263b741dbe173a6f2206d88))

<!-- generated by git-cliff -->
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ swc_compiler_base = { version = "0.7.15", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.113.10", path = "../swc_ecma_ext_transforms" }
swc_ecma_ext_transforms = { version = "0.113.11", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.92.16", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features = [
"cache",
Expand All @@ -99,7 +99,7 @@ swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", f
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.18", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.18", path = "../swc_node_comments" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_lo
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.19", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.21", path = "../swc_graph_analyzer/" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ swc_ecma_transforms_proposal = { optional = true, version = "0.171.14", path
swc_ecma_transforms_react = { optional = true, version = "0.183.14", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.140.14", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.14", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.10", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.11", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.62.18", path = "../swc_node_bundler" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_compat_common"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.10"
version = "0.4.11"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" }
swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2016/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2017/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2018/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" }
swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2019/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2020/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "0.4.14", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2021/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" }
swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tracing = "0.1.37"
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_ext_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_ext_transforms/"
edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ext_transforms"
version = "0.113.10"
version = "0.113.11"

[lib]
bench = false
Expand All @@ -16,5 +16,5 @@ phf = { version = "0.11", features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast", features = [
"serde",
] }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.23.10", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_usage_analyzer = { version = "0.23.11", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.20", path = "../swc_timer" }

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"defaults": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log([void 0] + 'swc');
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("swc");
2 changes: 1 addition & 1 deletion crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", f
"compat",
"proposal",
] }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_t
swc_ecma_transforms_proposal = { version = "0.171.14", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.14", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_classes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_bugfixes = { version = "0.4.14", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" }
swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" }
swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2016 = { version = "0.4.14", path = "../swc_ecma_compat_es2016" }
swc_ecma_compat_es2017 = { version = "0.4.14", path = "../swc_ecma_compat_es2017" }
Expand All @@ -47,7 +47,7 @@ swc_ecma_compat_es3 = { version = "0.4.14", path = "../swc_ecma_compat_e
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features =
] }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down

0 comments on commit a492080

Please sign in to comment.