Skip to content

Commit 11deca0

Browse files
committed
chore: Publish crates with swc_core v3.0.2
1 parent bcf05de commit 11deca0

File tree

47 files changed

+89
-95
lines changed

Some content is hidden

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

47 files changed

+89
-95
lines changed

.changeset/fifty-ears-press.md

-6
This file was deleted.

.changeset/fluffy-eyes-hope.md

-6
This file was deleted.

.changeset/poor-tools-arrive.md

-6
This file was deleted.

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77

88
- **(es/generator)** Fix code generation for `break` in nested while ([#9684](https://github.com/swc-project/swc/issues/9684)) ([65872af](https://github.com/swc-project/swc/commit/65872afaf151412be5f14820080325b920901bfb))
99

10+
11+
- **(es/parser)** Parse `await using()` call ([#9693](https://github.com/swc-project/swc/issues/9693)) ([bcf05de](https://github.com/swc-project/swc/commit/bcf05de2ebe755a54ec8a6b93311b1686494c578))
12+
13+
14+
- **(es/resolver)** Skip resolving lowercase `JSXIdentifiers` ([#9686](https://github.com/swc-project/swc/issues/9686)) ([6ed1715](https://github.com/swc-project/swc/commit/6ed1715b93875cd4588352a784ed876bf183df5d))
15+
16+
17+
- **(es/types)** Add `jsc.experimental.keepImportAssertions` to types ([#9691](https://github.com/swc-project/swc/issues/9691)) ([4b4dcfa](https://github.com/swc-project/swc/commit/4b4dcfa4d8532c84762b19737b66474e97480cef))
18+
1019
### Features
1120

1221

@@ -29,6 +38,9 @@
2938
- **(es)** Cache `current_dir()` system calls ([#9683](https://github.com/swc-project/swc/issues/9683)) ([7aab945](https://github.com/swc-project/swc/commit/7aab945a2199be06e20a35ec0d197fc817a48d9d))
3039

3140

41+
- **(es/lints)** Disable lints by default ([#9689](https://github.com/swc-project/swc/issues/9689)) ([4d887d0](https://github.com/swc-project/swc/commit/4d887d062b299b42b1a6529dfac5f22c3fd49903))
42+
43+
3244
- **(visit)** Introduce `Pass` API and adjust visitor APIs for it ([#9680](https://github.com/swc-project/swc/issues/9680)) ([581aafb](https://github.com/swc-project/swc/commit/581aafb4dfbbcf9b834e3b578cad83fec452a062))
3345

3446
## [1.7.40] - 2024-10-26

Cargo.lock

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

crates/binding_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "3.0.1", path = "../swc" }
36+
swc = { optional = true, version = "3.0.2", path = "../swc" }
3737
swc_common = { optional = true, version = "2.0.1", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "2.0.0", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms" }

crates/dbg-swc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }
39-
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
40-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
39+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
40+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
4141
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
4242
swc_error_reporters = { version = "3.0.0", path = "../swc_error_reporters" }
4343
swc_timer = { version = "1.0.0", path = "../swc_timer" }

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 = "2.0.0", path = "../swc_ecma_ast" }
30-
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
30+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
3131
testing = { version = "2.0.0", path = "../testing" }

crates/swc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
99
license = "Apache-2.0"
1010
name = "swc"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "3.0.1"
12+
version = "3.0.2"
1313

1414
[lib]
1515
bench = false
@@ -86,7 +86,7 @@ swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader", features = [
8686
"tsc",
8787
] }
8888
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier" }
89-
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
89+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
9090
swc_ecma_preset_env = { version = "3.0.0", path = "../swc_ecma_preset_env" }
9191
swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms", features = [
9292
"compat",
@@ -96,7 +96,7 @@ swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms", feat
9696
"react",
9797
"typescript",
9898
] }
99-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
99+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
100100
swc_ecma_transforms_compat = { version = "3.0.0", path = "../swc_ecma_transforms_compat" }
101101
swc_ecma_transforms_optimization = { version = "3.0.0", path = "../swc_ecma_transforms_optimization" }
102102
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }

crates/swc_bundler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ swc_common = { version = "2.0.1", path = "../swc_common" }
4242
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader" }
45-
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
46-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
45+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
46+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "3.0.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "2.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 = "3.0.1", features = [
42+
swc_core = { version = "3.0.2", 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 = "2.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier" }
34-
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
34+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }
3737

crates/swc_core/Cargo.toml

+4-4
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 = "3.0.1"
9+
version = "3.0.2"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true }
339339

340340
# swc_* dependencies
341341
binding_macros = { optional = true, version = "3.0.0", path = "../binding_macros" }
342-
swc = { optional = true, version = "3.0.1", path = "../swc" }
342+
swc = { optional = true, version = "3.0.2", path = "../swc" }
343343
swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" }
344344
swc_bundler = { optional = true, version = "3.0.0", path = "../swc_bundler" }
345345
swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" }
@@ -358,10 +358,10 @@ swc_ecma_codegen = { optional = true, version = "2.0.0", path =
358358
swc_ecma_lints = { optional = true, version = "3.0.0", path = "../swc_ecma_lints" }
359359
swc_ecma_loader = { optional = true, version = "2.0.0", path = "../swc_ecma_loader" }
360360
swc_ecma_minifier = { optional = true, version = "3.0.0", path = "../swc_ecma_minifier" }
361-
swc_ecma_parser = { optional = true, version = "3.0.0", path = "../swc_ecma_parser" }
361+
swc_ecma_parser = { optional = true, version = "3.0.1", path = "../swc_ecma_parser" }
362362
swc_ecma_preset_env = { optional = true, version = "3.0.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "3.0.0", path = "../swc_ecma_quote_macros" }
364-
swc_ecma_transforms_base = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_base" }
364+
swc_ecma_transforms_base = { optional = true, version = "3.0.1", path = "../swc_ecma_transforms_base" }
365365
swc_ecma_transforms_compat = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_module" }
367367
swc_ecma_transforms_optimization = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_optimization" }

crates/swc_ecma_codegen/Cargo.toml

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

crates/swc_ecma_compat_bugfixes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
1515
swc_common = { version = "2.0.1", path = "../swc_common" }
1616
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
1717
swc_ecma_compat_es2015 = { version = "3.0.1", path = "../swc_ecma_compat_es2015" }
18-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
18+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
1919
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
2020
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
2121
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2222
tracing = { workspace = true }
2323

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

crates/swc_ecma_compat_es2015/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ swc_common = { version = "2.0.1", path = "../swc_common" }
2727
swc_config = { version = "1.0.0", path = "../swc_config" }
2828
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
2929
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
30-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
30+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
3131
swc_ecma_transforms_classes = { version = "3.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 = "3.0.0", path = "../swc_ecma_utils" }
@@ -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 = "3.0.0", path = "../swc_ecma_parser" }
39+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
4040
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2016/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ version = "3.0.0"
1616
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
1717
swc_common = { version = "2.0.1", path = "../swc_common" }
1818
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
19-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
19+
swc_ecma_transforms_base = { version = "3.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 = "3.0.0", path = "../swc_ecma_utils" }
2222
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
2323
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2424
tracing = { workspace = true }
2525

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

crates/swc_ecma_compat_es2017/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ tracing = { workspace = true }
1919
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "2.0.1", path = "../swc_common" }
2121
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
22-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "3.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 = "3.0.0", path = "../swc_ecma_utils" }
2525
swc_ecma_visit = { version = "2.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 = "3.0.0", path = "../swc_ecma_parser" }
29+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
3030
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2018/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "2.0.1", path = "../swc_common" }
2121
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
2222
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
23-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "3.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 = "3.0.0", path = "../swc_ecma_utils" }
2626
swc_ecma_visit = { version = "2.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 = "3.0.0", path = "../swc_ecma_parser" }
30+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
3131
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2019/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ tracing = { workspace = true }
1919
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "2.0.1", path = "../swc_common" }
2121
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
22-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
22+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
2323
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
2424
swc_ecma_visit = { version = "2.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 = "3.0.0", path = "../swc_ecma_parser" }
28+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
2929
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_compat_es2020/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
1818
swc_common = { version = "2.0.1", path = "../swc_common" }
1919
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
2020
swc_ecma_compat_es2022 = { version = "3.0.0", path = "../swc_ecma_compat_es2022" }
21-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
2222
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
2323
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
2424
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2525
tracing = { workspace = true }
2626

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

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 = "2.0.0", path = "../swc_atoms" }
1919
swc_common = { version = "2.0.1", path = "../swc_common" }
2020
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
21-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
21+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
2222
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
2323
swc_ecma_visit = { version = "2.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 = "2.0.0", path = "../swc_atoms" }
2020
swc_common = { version = "2.0.1", path = "../swc_common" }
2121
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
2222
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
23-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
23+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
2424
swc_ecma_transforms_classes = { version = "3.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 = "3.0.0", path = "../swc_ecma_utils" }

crates/swc_ecma_compat_es3/Cargo.toml

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

1818
swc_common = { version = "2.0.1", path = "../swc_common" }
1919
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
20-
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
20+
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
2121
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
2222
swc_ecma_visit = { version = "2.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 = "3.0.0", path = "../swc_ecma_parser" }
26+
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
2727
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }

0 commit comments

Comments
 (0)