Skip to content

Commit b26ece9

Browse files
committed
chore: Publish crates with swc_core v8.0.1
1 parent 236986e commit b26ece9

File tree

35 files changed

+42
-54
lines changed

35 files changed

+42
-54
lines changed

.changeset/big-mails-kneel.md

-6
This file was deleted.

.changeset/modern-carpets-attend.md

-6
This file was deleted.

Cargo.lock

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

crates/dbg-swc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ swc_common = { version = "5.0.0", features = [
3333
], path = "../swc_common" }
3434
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3535
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
36-
swc_ecma_minifier = { version = "6.0.0", path = "../swc_ecma_minifier", features = [
36+
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.0", path = "../swc_ecma_transforms_base" }
40+
swc_ecma_transforms_base = { version = "6.0.1", 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
8888
"node",
8989
"tsc",
9090
] }
91-
swc_ecma_minifier = { version = "6.0.0", path = "../swc_ecma_minifier" }
91+
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
9292
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
9393
swc_ecma_preset_env = { version = "7.0.0", path = "../swc_ecma_preset_env" }
9494
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", features = [
@@ -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.0", path = "../swc_ecma_transforms_base" }
102+
swc_ecma_transforms_base = { version = "6.0.1", 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

+2-2
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.0", path = "../swc_ecma_transforms_base" }
46+
swc_ecma_transforms_base = { version = "6.0.1", 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" }
@@ -63,7 +63,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
6363
"node",
6464
"cache",
6565
] }
66-
swc_ecma_minifier = { version = "6.0.0", path = "../swc_ecma_minifier", features = [
66+
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
6969
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal" }

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.0", features = [
42+
swc_core = { version = "8.0.1", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
3030
swc_config = { version = "1.0.0", path = "../swc_config" }
3131
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "6.0.0", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }

crates/swc_core/Cargo.toml

+3-3
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.0"
9+
version = "8.0.1"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -357,11 +357,11 @@ swc_ecma_ast = { optional = true, version = "5.0.0", path =
357357
swc_ecma_codegen = { optional = true, version = "5.0.0", path = "../swc_ecma_codegen" }
358358
swc_ecma_lints = { optional = true, version = "6.0.0", path = "../swc_ecma_lints" }
359359
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
360-
swc_ecma_minifier = { optional = true, version = "6.0.0", path = "../swc_ecma_minifier" }
360+
swc_ecma_minifier = { optional = true, version = "6.0.1", path = "../swc_ecma_minifier" }
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.0", path = "../swc_ecma_transforms_base" }
364+
swc_ecma_transforms_base = { optional = true, version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
18+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
30+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
19+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
20+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
37+
swc_ecma_transforms_base = { version = "6.0.1", path = "../swc_ecma_transforms_base" }
3838
testing = { version = "5.0.0", path = "../testing" }
3939

4040
[features]

crates/swc_ecma_minifier/Cargo.toml

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

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -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.0", path = "../swc_ecma_transforms_base" }
66+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
38+
swc_ecma_transforms_base = { version = "6.0.1", 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.0"
10+
version = "6.0.1"
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.0", path = "../swc_ecma_transforms_base" }
18+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
47+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
35+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
38+
swc_ecma_transforms_base = { version = "6.0.1", 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.0", path = "../swc_ecma_transforms_base" }
29+
swc_ecma_transforms_base = { version = "6.0.1", 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" }

0 commit comments

Comments
 (0)