Skip to content

Commit

Permalink
chore: Publish crates with swc_core v8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 9, 2024
1 parent 5a44c6b commit e05e4c7
Show file tree
Hide file tree
Showing 33 changed files with 41 additions and 45 deletions.
6 changes: 0 additions & 6 deletions .changeset/two-terms-invite.md

This file was deleted.

14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/resolver)** Fix wrong syntax context of vars with the same names as catch params ([#9786](https://github.com/swc-project/swc/issues/9786)) ([5a44c6b](https://github.com/swc-project/swc/commit/5a44c6b42471aeceb3771b1cf4ebb310d03a0154))

## [1.10.0] - 2024-12-04

### Bug Fixes
Expand Down Expand Up @@ -1484,10 +1492,4 @@

- **(xtask)** Fix `nightly` action ([#9042](https://github.com/swc-project/swc/issues/9042)) ([733dcc6](https://github.com/swc-project/swc/commit/733dcc6b83e77a2571a3fee307a73fc0c17bd44c))

### Performance



- **(es/minifier)** Do not visit var init multiple times ([#9039](https://github.com/swc-project/swc/issues/9039)) ([675916c](https://github.com/swc-project/swc/commit/675916ccbd378d3b0334ffeb7ad0759538856ddd))

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

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

2 changes: 1 addition & 1 deletion crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features
"concurrent",
] }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", feat
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
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 @@ -43,7 +43,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast"
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "8.0.1", features = [
swc_core = { version = "8.0.2", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
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 @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "8.0.1"
version = "8.0.2"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -361,7 +361,7 @@ swc_ecma_minifier = { optional = true, version = "6.0.1", path =
swc_ecma_parser = { optional = true, version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "7.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { optional = true, version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
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 @@ -15,7 +15,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "6.0.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
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 @@ -16,7 +16,7 @@ version = "6.0.0"
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
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 @@ -19,7 +19,7 @@ tracing = { workspace = true }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2018/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
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 @@ -19,7 +19,7 @@ tracing = { workspace = true }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", 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 @@ -18,7 +18,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "7.0.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
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 @@ -18,7 +18,7 @@ tracing = { workspace = true }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
Expand Down
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 @@ -17,7 +17,7 @@ tracing = { workspace = true }

swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
testing = { version = "5.0.0", path = "../testing" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast", features = [
] }
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "6.0.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
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 @@ -35,7 +35,7 @@ typescript = ["swc_ecma_transforms_typescript"]
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
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 @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git"
version = "6.0.1"
version = "6.0.2"

[lib]
bench = false
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 @@ -15,6 +15,6 @@ bench = false
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ swc_ecma_compat_es2020 = { version = "7.0.0", path = "../swc_ecma_compat_es
swc_ecma_compat_es2021 = { version = "6.0.0", path = "../swc_ecma_compat_es2021" }
swc_ecma_compat_es2022 = { version = "7.0.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_compat_es3 = { version = "6.0.0", path = "../swc_ecma_compat_es3" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
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 @@ -32,7 +32,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
] }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_proposal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", optional = true }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_react/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
testing = { version = "5.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_typescript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ryu-js = { workspace = true }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
Loading

0 comments on commit e05e4c7

Please sign in to comment.