Skip to content

Commit 9981a91

Browse files
committed
chore: Publish crates with swc_core v9.0.1
1 parent c2696db commit 9981a91

File tree

41 files changed

+50
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+50
-48
lines changed

.changeset/lucky-hotels-grow.md

-6
This file was deleted.

CHANGELOG.md

+8
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/parser)** Do not parse empty stmt after using decl ([#9798](https://github.com/swc-project/swc/issues/9798)) ([c2696db](https://github.com/swc-project/swc/commit/c2696db528fc98187c5c5f7413bd9daac7d6c1b6))
9+
210
## [1.10.1] - 2024-12-09
311

412
### Bug Fixes

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
@@ -36,7 +36,7 @@ swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }
39-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
39+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4040
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" }

crates/jsdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ anyhow = { workspace = true }
2727
dashmap = { workspace = true }
2828

2929
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
30-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
30+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3131
testing = { version = "5.0.0", path = "../testing" }

crates/swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
8989
"tsc",
9090
] }
9191
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
92-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
92+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
9393
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env" }
9494
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", features = [
9595
"compat",

crates/swc_bundler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
4242
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" }
45-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
45+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4646
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" }

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 = "9.0.0", features = [
42+
swc_core = { version = "9.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
@@ -31,7 +31,7 @@ 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" }
3333
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
34-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
34+
swc_ecma_parser = { version = "6.0.1", 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" }
3737

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 = "9.0.0"
9+
version = "9.0.1"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -358,7 +358,7 @@ swc_ecma_codegen = { optional = true, version = "5.0.0", path =
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" }
360360
swc_ecma_minifier = { optional = true, version = "6.0.1", path = "../swc_ecma_minifier" }
361-
swc_ecma_parser = { optional = true, version = "6.0.0", path = "../swc_ecma_parser" }
361+
swc_ecma_parser = { optional = true, version = "6.0.1", path = "../swc_ecma_parser" }
362362
swc_ecma_preset_env = { optional = true, version = "8.0.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "6.0.2", path = "../swc_ecma_transforms_base" }

crates/swc_ecma_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ swc_allocator = { version = "2.0.0", path = "../swc_allocator" }
4141
swc_common = { version = "5.0.0", path = "../swc_common", features = [
4242
"sourcemap",
4343
] }
44-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
44+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4545
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
4646
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
4747
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecma_compat_bugfixes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2222
tracing = { workspace = true }
2323

2424
[dev-dependencies]
25-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
25+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2626
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2015/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
3636
tracing = { workspace = true }
3737

3838
[dev-dependencies]
39-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
39+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4040
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2016/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2424
tracing = { workspace = true }
2525

2626
[dev-dependencies]
27-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
27+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2828
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2017/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2626
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2727

2828
[dev-dependencies]
29-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
29+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3030
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2018/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2727
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2828

2929
[dev-dependencies]
30-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
30+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3131
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2019/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2525
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2626

2727
[dev-dependencies]
28-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
28+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2929
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2020/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2525
tracing = { workspace = true }
2626

2727
[dev-dependencies]
28-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
28+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2929
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
2323
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2424

2525
[dev-dependencies]
26-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
26+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2727
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3333

3434
[dev-dependencies]
3535
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
36-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
36+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3737
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3838
testing = { version = "5.0.0", path = "../testing" }
3939

crates/swc_ecma_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast", features = [
6262
"serde",
6363
] }
6464
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
65-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
65+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
6666
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" }

crates/swc_ecma_parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
77
license = "Apache-2.0"
88
name = "swc_ecma_parser"
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

crates/swc_ecma_preset_env/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ criterion = { workspace = true }
4545
pretty_assertions = { workspace = true }
4646

4747
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
48-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
48+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4949
testing = { version = "5.0.0", path = "../testing" }
5050

5151
[[bench]]

crates/swc_ecma_quote_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ syn = { workspace = true }
2121
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
2222
swc_common = { version = "5.0.0", path = "../swc_common" }
2323
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
24-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
24+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2525
swc_macros_common = { version = "1.0.0", path = "../swc_macros_common" }

crates/swc_ecma_transforms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ sourcemap = { workspace = true }
5151
tempfile = { workspace = true }
5252

5353
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
54-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
54+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
5555
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }
5656
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecma_transforms_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tracing = { workspace = true }
3131
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3232
swc_common = { version = "5.0.0", path = "../swc_common" }
3333
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
34-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
34+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3535
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
3636
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3737

crates/swc_ecma_transforms_compat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
5454
[dev-dependencies]
5555
serde_json = { workspace = true }
5656

57-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
57+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
5858
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }
5959
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecma_transforms_module/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3131
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
3232
"node",
3333
] }
34-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
34+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3535
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" }

crates/swc_ecma_transforms_optimization/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tracing = { workspace = true }
3434
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" }
37-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
37+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3838
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" }

crates/swc_ecma_transforms_proposal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3636
serde_json = { workspace = true }
3737

3838
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
39-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
39+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4040
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
4141
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }
4242
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecma_transforms_react/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3232
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" }
35-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
35+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3636
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" }

crates/swc_ecma_transforms_testing/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", features = [
2727
] }
2828
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
30-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
30+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3131
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
3232
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" }

crates/swc_ecma_transforms_typescript/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ codspeed-criterion-compat = { workspace = true }
2929
criterion = { workspace = true }
3030

3131
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
32-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
32+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3333
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
3434
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal" }
3535
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3838
stacker = { version = "0.1.15", optional = true }
3939

4040
[dev-dependencies]
41-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
41+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4242
testing = { version = "5.0.0", path = "../testing" }

crates/swc_ecmascript/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
4141
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
4242
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen", optional = true }
4343
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", optional = true }
44-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser", optional = true, default-features = false }
44+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser", optional = true, default-features = false }
4545
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env", optional = true }
4646
swc_ecma_quote = { version = "6.0.0", path = "../swc_ecma_quote", optional = true }
4747
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", optional = true }

crates/swc_estree_compat/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
3030
"tty-emitter",
3131
] }
3232
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
33-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
33+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3434
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
3535
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
3636
swc_estree_ast = { version = "5.0.0", path = "../swc_estree_ast" }
@@ -43,7 +43,7 @@ pretty_assertions = { workspace = true }
4343

4444
swc = { version = "9.0.0", path = "../swc" }
4545
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
46-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
46+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4747
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms/" }
4848
testing = { version = "5.0.0", path = "../testing" }
4949
walkdir = { workspace = true }

crates/swc_fast_ts_strip/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
2222
] }
2323
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
2424
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
25-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
25+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
2626
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
2727
swc_ecma_transforms_typescript = { version = "6.0.0", path = "../swc_ecma_transforms_typescript" }
2828
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_html_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen", features =
3939
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features = [
4040
"extra-serde",
4141
] }
42-
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
42+
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4343
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
4444
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
4545
swc_html_ast = { version = "5.0.0", path = "../swc_html_ast" }

0 commit comments

Comments
 (0)