From 477897fc40ae882fe777ade865d19853ec30fa9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Fri, 17 Jan 2025 13:55:07 +0900 Subject: [PATCH] chore: Publish crates with `swc_core` `v10.3.0` --- .changeset/calm-pumpkins-explain.md | 5 ----- .changeset/mean-boxes-design.md | 6 ------ CHANGELOG.md | 12 ++++++------ Cargo.lock | 6 +++--- crates/dbg-swc/Cargo.toml | 2 +- crates/swc/Cargo.toml | 4 ++-- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_cli_impl/Cargo.toml | 2 +- crates/swc_compiler_base/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 6 +++--- crates/swc_ecma_codegen/Cargo.toml | 2 +- crates/swc_ecma_lints/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 2 +- crates/swc_ecma_preset_env/Cargo.toml | 2 +- crates/swc_ecma_transforms/Cargo.toml | 2 +- crates/swc_ecma_transforms_base/Cargo.toml | 2 +- crates/swc_ecma_transforms_proposal/Cargo.toml | 2 +- crates/swc_ecma_transforms_react/Cargo.toml | 2 +- crates/swc_ecma_transforms_testing/Cargo.toml | 2 +- crates/swc_ecma_transforms_typescript/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 2 +- crates/swc_fast_ts_strip/Cargo.toml | 2 +- crates/swc_html_minifier/Cargo.toml | 2 +- crates/swc_node_bundler/Cargo.toml | 2 +- crates/swc_typescript/Cargo.toml | 4 ++-- 25 files changed, 34 insertions(+), 45 deletions(-) delete mode 100644 .changeset/calm-pumpkins-explain.md delete mode 100644 .changeset/mean-boxes-design.md diff --git a/.changeset/calm-pumpkins-explain.md b/.changeset/calm-pumpkins-explain.md deleted file mode 100644 index 78fc4288271a..000000000000 --- a/.changeset/calm-pumpkins-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -swc_typescript: patch ---- - -fix(typescript): Collect usages in extend clauses of classes and interfaces diff --git a/.changeset/mean-boxes-design.md b/.changeset/mean-boxes-design.md deleted file mode 100644 index 6b120bbcef9c..000000000000 --- a/.changeset/mean-boxes-design.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_core: minor -swc_ecma_codegen: minor ---- - -perf(es/codegen): Remove needless allocations diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e7c93347685..6f47ad99d88a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - **(es/ts_strip)** Handle ASI hazard in return statement ([#9882](https://github.com/swc-project/swc/issues/9882)) ([121b5fe](https://github.com/swc-project/swc/commit/121b5fefbc17932816f69c88edc14f8387c493e9)) + +- **(typescript)** Collect usages in extend clauses of classes and interfaces ([#9893](https://github.com/swc-project/swc/issues/9893)) ([ef29ef6](https://github.com/swc-project/swc/commit/ef29ef6a225927ccdd3d98751f9a2cfef88ca237)) + ### Features @@ -26,6 +29,9 @@ - **(bench)** Run benchmark on a custom runner ([#9877](https://github.com/swc-project/swc/issues/9877)) ([2d6f9a5](https://github.com/swc-project/swc/commit/2d6f9a5c27803257635b4b008c5d3b0592478e1d)) +- **(es/codegen)** Remove needless allocations ([#9890](https://github.com/swc-project/swc/issues/9890)) ([f230ff2](https://github.com/swc-project/swc/commit/f230ff2d8454808ffa99c298448eba7522597219)) + + - **(es/minifier)** Make the first run of DCE more efficient ([#9868](https://github.com/swc-project/swc/issues/9868)) ([7329824](https://github.com/swc-project/swc/commit/7329824b825663c6c51c48dd5ace097da87e2c88)) @@ -1554,12 +1560,6 @@ -- **(es/parser)** Optimize macros ([#9100](https://github.com/swc-project/swc/issues/9100)) ([719b7c5](https://github.com/swc-project/swc/commit/719b7c54f69ef276270dc39fbcb8bbdbf52899bf)) - - -- **(es/parser)** Remove unnecessary check ([#9102](https://github.com/swc-project/swc/issues/9102)) ([2a490ad](https://github.com/swc-project/swc/commit/2a490ad0b2f9f89260742e653ba9ca086c1a9798)) - - - **(es/parser)** Add a check before numeric operations ([#9105](https://github.com/swc-project/swc/issues/9105)) ([c0602c8](https://github.com/swc-project/swc/commit/c0602c81db55777be726cd8fe2fd074e34bd4d96)) diff --git a/Cargo.lock b/Cargo.lock index 02bbd3b4d27c..9ab2fba625dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4680,7 +4680,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "10.2.5" +version = "10.3.0" dependencies = [ "anyhow", "binding_macros", @@ -4946,7 +4946,7 @@ dependencies = [ [[package]] name = "swc_ecma_codegen" -version = "5.0.1" +version = "5.1.0" dependencies = [ "base64 0.21.7", "codspeed-criterion-compat", @@ -6107,7 +6107,7 @@ dependencies = [ [[package]] name = "swc_typescript" -version = "6.1.0" +version = "6.1.1" dependencies = [ "petgraph", "rustc-hash", diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 78963f4c1eb8..14065a3e7fd7 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -32,7 +32,7 @@ swc_common = { version = "5.0.0", features = [ "tty-emitter", ], path = "../swc_common" } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier", features = [ "concurrent", ] } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 8cab7fd179e1..6c9f0a073786 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -80,7 +80,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ swc_compiler_base = { version = "8.0.0", path = "../swc_compiler_base" } swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_ext_transforms = { version = "7.0.0", path = "../swc_ecma_ext_transforms" } swc_ecma_lints = { version = "7.0.0", path = "../swc_ecma_lints" } swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [ @@ -110,7 +110,7 @@ swc_plugin_proxy = { version = "5.0.0", path = "../swc_plugin_proxy", optional = swc_plugin_runner = { version = "5.1.0", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "1.0.0", path = "../swc_timer" } swc_transform_common = { version = "1.0.0", path = "../swc_transform_common" } -swc_typescript = { version = "6.1.0", path = "../swc_typescript" } +swc_typescript = { version = "6.1.1", path = "../swc_typescript" } swc_visit = { version = "2.0.0", path = "../swc_visit" } [dependencies.tokio] diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 26a5b9f7a02e..3a045b177aaf 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -40,7 +40,7 @@ tracing = { workspace = true } swc_atoms = { version = "3.0.3", path = "../swc_atoms" } swc_common = { version = "5.0.0", path = "../swc_common" } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 9db91825f46f..35e3f5da7790 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "10.2.5", features = [ +swc_core = { version = "10.3.0", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index 1efe85481635..558071c61a00 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -29,7 +29,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ ] } swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 74742b6d85e7..bdb8fd842f33 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = { workspace = true } license = { workspace = true } name = "swc_core" repository = { workspace = true } -version = "10.2.5" +version = "10.3.0" [package.metadata.docs.rs] features = [ "allocator_node", @@ -354,7 +354,7 @@ swc_css_prefixer = { optional = true, version = "5.0.0", path = swc_css_utils = { optional = true, version = "5.0.0", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "5.0.0", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { optional = true, version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { optional = true, version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_lints = { optional = true, version = "7.0.0", path = "../swc_ecma_lints" } swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" } swc_ecma_minifier = { optional = true, version = "7.1.0", path = "../swc_ecma_minifier" } @@ -380,7 +380,7 @@ swc_plugin_macro = { optional = true, version = "1.0.0", path = swc_plugin_proxy = { optional = true, version = "5.0.0", path = "../swc_plugin_proxy" } swc_trace_macro = { optional = true, version = "2.0.0", path = "../swc_trace_macro" } swc_transform_common = { optional = true, version = "1.0.0", path = "../swc_transform_common" } -swc_typescript = { optional = true, version = "6.1.0", path = "../swc_typescript" } +swc_typescript = { optional = true, version = "6.1.1", path = "../swc_typescript" } testing = { optional = true, version = "5.0.0", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features swc_allocator = { version = "2.0.0", path = "../swc_allocator", default-features = false } diff --git a/crates/swc_ecma_codegen/Cargo.toml b/crates/swc_ecma_codegen/Cargo.toml index da4fbab0c8b5..9595d22ae628 100644 --- a/crates/swc_ecma_codegen/Cargo.toml +++ b/crates/swc_ecma_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = { workspace = true } name = "swc_ecma_codegen" repository = { workspace = true } -version = "5.0.1" +version = "5.1.0" [features] # This does not enable serde for ast nodes. diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index ccd91b5c34c1..202d0ab57f62 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -36,7 +36,7 @@ anyhow = { workspace = true } codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 1302f4bdcf0e..6ba7e2991998 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -61,7 +61,7 @@ swc_config = { version = "1.0.0", path = "../swc_config", features = [ swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "7.1.0", path = "../swc_ecma_transforms_optimization" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index 2cb65b042898..dad8a09a9b86 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -44,7 +44,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } testing = { version = "5.0.0", path = "../testing" } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 8f00eb76084b..be4487a875d9 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -50,7 +50,7 @@ pretty_assertions = { workspace = true } sourcemap = { workspace = true } tempfile = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_testing = { version = "7.0.1", path = "../swc_ecma_transforms_testing" } testing = { version = "5.0.0", path = "../testing" } diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 60ae6d3eb20a..c266f6988902 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } rayon = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } swc_malloc = { version = "1.0.0", path = "../swc_malloc" } testing = { version = "5.0.0", path = "../testing" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 863685932411..6c8dc97951cc 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -35,7 +35,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } [dev-dependencies] serde_json = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_testing = { version = "7.0.1", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 1439c8c0caef..6dc1b5a04249 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -39,7 +39,7 @@ swc_ecma_utils = { version = "7.0.2", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } [dev-dependencies] -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen/" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen/" } swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat/" } swc_ecma_transforms_testing = { version = "7.0.1", path = "../swc_ecma_transforms_testing" } testing = { version = "5.0.0", path = "../testing" } diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index 3afe5a2cc0ab..bcecbcadeb30 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -27,7 +27,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 5c800445e9f7..a1c0ad110964 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -28,7 +28,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_proposal = { version = "7.0.1", path = "../swc_ecma_transforms_proposal" } diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 96c610505bd6..cc5eb7d36f22 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -39,7 +39,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen", optional = true } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", optional = true } swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env", optional = true } diff --git a/crates/swc_fast_ts_strip/Cargo.toml b/crates/swc_fast_ts_strip/Cargo.toml index 227bf5eab687..ed17a4e67ba1 100644 --- a/crates/swc_fast_ts_strip/Cargo.toml +++ b/crates/swc_fast_ts_strip/Cargo.toml @@ -21,7 +21,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_typescript = { version = "7.0.0", path = "../swc_ecma_transforms_typescript" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index baef486dd481..c2eb11aa7390 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -33,7 +33,7 @@ swc_css_codegen = { version = "5.0.0", path = "../swc_css_codegen", optional = t swc_css_minifier = { version = "5.0.0", path = "../swc_css_minifier", optional = true } swc_css_parser = { version = "5.0.0", path = "../swc_css_parser", optional = true } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen", features = [ +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", features = [ "serde-impl", ] } swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier", features = [ diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index ca3f5906f844..53d0b5055236 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -38,7 +38,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ "concurrent", ] } swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms" } diff --git a/crates/swc_typescript/Cargo.toml b/crates/swc_typescript/Cargo.toml index 28e35b07bb38..aff785c863f9 100644 --- a/crates/swc_typescript/Cargo.toml +++ b/crates/swc_typescript/Cargo.toml @@ -6,7 +6,7 @@ edition = { workspace = true } license = { workspace = true } name = "swc_typescript" repository = { workspace = true } -version = "6.1.0" +version = "6.1.1" [dependencies] petgraph = { workspace = true } @@ -21,7 +21,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } [dev-dependencies] -swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" } testing = { version = "5.0.0", path = "../testing" }