Skip to content

Commit e05e4c7

Browse files
committed
chore: Publish crates with swc_core v8.0.2
1 parent 5a44c6b commit e05e4c7

File tree

33 files changed

+41
-45
lines changed

33 files changed

+41
-45
lines changed

.changeset/two-terms-invite.md

-6
This file was deleted.

CHANGELOG.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Bug Fixes
5+
6+
7+
8+
- **(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))
9+
210
## [1.10.0] - 2024-12-04
311

412
### Bug Fixes
@@ -1484,10 +1492,4 @@
14841492

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

1487-
### Performance
1488-
1489-
1490-
1491-
- **(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))
1492-
14931495
<!-- generated by git-cliff -->

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dbg-swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features
3737
"concurrent",
3838
] }
3939
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
40-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
40+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
4141
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
4242
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
4343
swc_timer = { version = "1.0.0", path = "../swc_timer" }

crates/swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", feat
9999
"react",
100100
"typescript",
101101
] }
102-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
102+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
103103
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
104104
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
105105
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_bundler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast"
4343
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
46-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
46+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_cli_impl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
3939
tracing-subscriber = { workspace = true, features = ["env-filter"] }
4040
walkdir = { workspace = true }
4141

42-
swc_core = { version = "8.0.1", features = [
42+
swc_core = { version = "8.0.2", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "8.0.1"
9+
version = "8.0.2"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -361,7 +361,7 @@ swc_ecma_minifier = { optional = true, version = "6.0.1", path =
361361
swc_ecma_parser = { optional = true, version = "6.0.0", path = "../swc_ecma_parser" }
362362
swc_ecma_preset_env = { optional = true, version = "7.0.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
364-
swc_ecma_transforms_base = { optional = true, version = "6.0.1", path = "../swc_ecma_transforms_base" }
364+
swc_ecma_transforms_base = { optional = true, version = "6.0.2", path = "../swc_ecma_transforms_base" }
365365
swc_ecma_transforms_compat = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_module" }
367367
swc_ecma_transforms_optimization = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_optimization" }

crates/swc_ecma_compat_bugfixes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
1515
swc_common = { version = "5.0.0", path = "../swc_common" }
1616
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
1717
swc_ecma_compat_es2015 = { version = "6.0.0", path = "../swc_ecma_compat_es2015" }
18-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
18+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
1919
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2020
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2121
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_compat_es2015/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
2727
swc_config = { version = "1.0.0", path = "../swc_config" }
2828
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2929
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
30-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
30+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3131
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
3232
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
3333
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_compat_es2016/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version = "6.0.0"
1616
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
1717
swc_common = { version = "5.0.0", path = "../swc_common" }
1818
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
19-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
19+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2020
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
2121
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2222
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_compat_es2017/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tracing = { workspace = true }
1919
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "5.0.0", path = "../swc_common" }
2121
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
22-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2323
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
2424
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2525
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_compat_es2018/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "5.0.0", path = "../swc_common" }
2121
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2222
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
23-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2424
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
2525
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2626
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_compat_es2019/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tracing = { workspace = true }
1919
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "5.0.0", path = "../swc_common" }
2121
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
22-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2323
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2424
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2525
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_compat_es2020/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
1818
swc_common = { version = "5.0.0", path = "../swc_common" }
1919
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2020
swc_ecma_compat_es2022 = { version = "7.0.0", path = "../swc_ecma_compat_es2022" }
21-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2222
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2323
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2424
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_compat_es2021/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tracing = { workspace = true }
1818
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
1919
swc_common = { version = "5.0.0", path = "../swc_common" }
2020
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
21-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2222
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2323
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2424
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_compat_es2022/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "5.0.0", path = "../swc_common" }
2121
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2222
swc_ecma_compat_common = { version = "6.0.0", path = "../swc_ecma_compat_common" }
23-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2424
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
2525
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
2626
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_compat_es3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tracing = { workspace = true }
1717

1818
swc_common = { version = "5.0.0", path = "../swc_common" }
1919
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
20-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
20+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2121
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2222
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2323
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3434
[dev-dependencies]
3535
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
3636
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
37-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
37+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3838
testing = { version = "5.0.0", path = "../testing" }
3939

4040
[features]

crates/swc_ecma_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast", features = [
6363
] }
6464
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
6565
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
66-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
66+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
6767
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
6868
swc_ecma_usage_analyzer = { version = "6.0.0", path = "../swc_ecma_usage_analyzer" }
6969
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_transforms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ typescript = ["swc_ecma_transforms_typescript"]
3535
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3636
swc_common = { version = "5.0.0", path = "../swc_common" }
3737
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
38-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
38+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat", optional = true }
4040
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module", optional = true }
4141
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization", optional = true }

crates/swc_ecma_transforms_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"]
77
license = "Apache-2.0"
88
name = "swc_ecma_transforms_base"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "6.0.1"
10+
version = "6.0.2"
1111

1212
[lib]
1313
bench = false

crates/swc_ecma_transforms_classes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ bench = false
1515
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
1616
swc_common = { version = "5.0.0", path = "../swc_common" }
1717
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
18-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
18+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
1919
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2020
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_transforms_compat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ swc_ecma_compat_es2020 = { version = "7.0.0", path = "../swc_ecma_compat_es
4444
swc_ecma_compat_es2021 = { version = "6.0.0", path = "../swc_ecma_compat_es2021" }
4545
swc_ecma_compat_es2022 = { version = "7.0.0", path = "../swc_ecma_compat_es2022" }
4646
swc_ecma_compat_es3 = { version = "6.0.0", path = "../swc_ecma_compat_es3" }
47-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
47+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
4848
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
4949
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
5050
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_transforms_module/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
3232
"node",
3333
] }
3434
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
35-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
35+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3636
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
3737
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3838

crates/swc_ecma_transforms_optimization/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3535
swc_common = { version = "5.0.0", path = "../swc_common" }
3636
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3737
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
38-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
38+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
4040
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
4141
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_transforms_proposal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2626
swc_common = { version = "5.0.0", path = "../swc_common" }
2727
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2828
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", optional = true }
29-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
29+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3030
swc_ecma_transforms_classes = { version = "6.0.0", path = "../swc_ecma_transforms_classes" }
3131
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
3232
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_transforms_react/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
3333
swc_config = { version = "1.0.0", path = "../swc_config" }
3434
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3535
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
36-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
36+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3737
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
3838
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
3939
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_ecma_transforms_testing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
3030
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
3131
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
32-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
32+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3333
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
3434
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3535
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecma_transforms_typescript/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ryu-js = { workspace = true }
1919
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "5.0.0", path = "../swc_common" }
2121
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
22-
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2323
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react" }
2424
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
2525
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

0 commit comments

Comments
 (0)