diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e81778cdc59..abd4bfb267f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(es/helpers)** Add `addInitializer` to field decorators ([#8619](https://github.com/swc-project/swc/issues/8619)) ([cd38ef3](https://github.com/swc-project/swc/commit/cd38ef39d6a3b3f1e31d5144e2e8c11bd9144239)) + + - **(es/react)** Validate pragma before parsing ([#8637](https://github.com/swc-project/swc/issues/8637)) ([5f1cf01](https://github.com/swc-project/swc/commit/5f1cf018237d12f786fc6deee48cae5d7d3d77de)) ### Features @@ -1446,9 +1449,6 @@ -- **(es/minifier)** Drop line comments starting with `!` ([#7689](https://github.com/swc-project/swc/issues/7689)) ([951138c](https://github.com/swc-project/swc/commit/951138cd13339ca7b5cb5305203e466fcd4a0b0e)) - - - **(es/minifier)** Abort seq inliner using visitor ([#7699](https://github.com/swc-project/swc/issues/7699)) ([a26dbce](https://github.com/swc-project/swc/commit/a26dbce9817c8f39c7d5857bb258298da274c6f3)) diff --git a/Cargo.lock b/Cargo.lock index 5b4e71327217..288a4d013ba0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4197,7 +4197,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_bugfixes" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_atoms", "swc_common", @@ -4225,7 +4225,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2015" -version = "0.4.4" +version = "0.4.5" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4251,7 +4251,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2016" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_atoms", "swc_common", @@ -4268,7 +4268,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2017" -version = "0.4.4" +version = "0.4.5" dependencies = [ "serde", "swc_atoms", @@ -4286,7 +4286,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2018" -version = "0.4.4" +version = "0.4.5" dependencies = [ "serde", "swc_atoms", @@ -4305,7 +4305,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2019" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_atoms", "swc_common", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2020" -version = "0.4.4" +version = "0.4.5" dependencies = [ "serde", "swc_atoms", @@ -4339,7 +4339,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2021" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_atoms", "swc_common", @@ -4353,7 +4353,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2022" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_atoms", "swc_common", @@ -4370,7 +4370,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es3" -version = "0.4.4" +version = "0.4.5" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4397,7 +4397,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.92.4" +version = "0.92.5" dependencies = [ "auto_impl", "dashmap", @@ -4598,7 +4598,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_base" -version = "0.137.4" +version = "0.137.5" dependencies = [ "better_scoped_tls", "bitflags 2.4.2", @@ -4625,7 +4625,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_classes" -version = "0.126.4" +version = "0.126.5" dependencies = [ "swc_atoms", "swc_common", @@ -4637,7 +4637,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.163.4" +version = "0.163.5" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4686,7 +4686,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.180.4" +version = "0.180.5" dependencies = [ "Inflector", "anyhow", @@ -4745,7 +4745,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_proposal" -version = "0.171.4" +version = "0.171.5" dependencies = [ "either", "rustc-hash", @@ -4797,7 +4797,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_testing" -version = "0.140.4" +version = "0.140.5" dependencies = [ "ansi_term", "anyhow", diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 67a67e632db3..bee286d437fd 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier", featur "concurrent", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" } swc_timer = { version = "0.21.18", path = "../swc_timer" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 19391749106f..2f821996bf4c 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -78,7 +78,7 @@ swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_ext_transforms = { version = "0.113.4", path = "../swc_ecma_ext_transforms" } -swc_ecma_lints = { version = "0.92.4", path = "../swc_ecma_lints" } +swc_ecma_lints = { version = "0.92.5", path = "../swc_ecma_lints" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = [ "cache", "node", @@ -95,8 +95,8 @@ swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms", fe "react", "typescript", ] } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -127,7 +127,7 @@ rayon = "1.7.0" swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [ "serde-impl", ] } -swc_ecma_lints = { version = "0.92.4", path = "../swc_ecma_lints", features = [ +swc_ecma_lints = { version = "0.92.5", path = "../swc_ecma_lints", features = [ "non_critical_lints", ] } swc_ecma_testing = { version = "0.22.19", path = "../swc_ecma_testing" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 8bcb5fbd293e..a70a793ee5b0 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -43,7 +43,7 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_as swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -66,7 +66,7 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier", features = [ "concurrent", ] } -swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_proposal = { version = "0.171.5", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 3d6dbadb5cac..01ff800c3404 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -344,19 +344,19 @@ swc_css_utils = { optional = true, version = "0.137.18", path swc_css_visit = { optional = true, version = "0.139.18", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.148.3", path = "../swc_ecma_codegen" } -swc_ecma_lints = { optional = true, version = "0.92.4", path = "../swc_ecma_lints" } +swc_ecma_lints = { optional = true, version = "0.92.5", path = "../swc_ecma_lints" } swc_ecma_loader = { optional = true, version = "0.45.19", path = "../swc_ecma_loader" } swc_ecma_minifier = { optional = true, version = "0.192.5", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "0.143.3", path = "../swc_ecma_parser" } swc_ecma_preset_env = { optional = true, version = "0.206.5", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "0.54.6", path = "../swc_ecma_quote_macros" } -swc_ecma_transforms_base = { optional = true, version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { optional = true, version = "0.163.4", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { optional = true, version = "0.180.4", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_base = { optional = true, version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { optional = true, version = "0.163.5", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_module = { optional = true, version = "0.180.5", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_optimization = { optional = true, version = "0.198.5", path = "../swc_ecma_transforms_optimization" } -swc_ecma_transforms_proposal = { optional = true, version = "0.171.4", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_proposal = { optional = true, version = "0.171.5", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { optional = true, version = "0.183.5", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { optional = true, version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { optional = true, version = "0.140.5", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { optional = true, version = "0.188.5", path = "../swc_ecma_transforms_typescript" } swc_ecma_usage_analyzer = { optional = true, version = "0.23.4", path = "../swc_ecma_usage_analyzer" } swc_ecma_utils = { optional = true, version = "0.127.4", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index 9b8cb84eec6a..36610585b057 100644 --- a/crates/swc_ecma_compat_bugfixes/Cargo.toml +++ b/crates/swc_ecma_compat_bugfixes/Cargo.toml @@ -7,15 +7,15 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_bugfixes" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_es2015 = { version = "0.4.4", path = "../swc_ecma_compat_es2015" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_compat_es2015 = { version = "0.4.5", path = "../swc_ecma_compat_es2015" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } @@ -23,4 +23,4 @@ tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2015/Cargo.toml b/crates/swc_ecma_compat_es2015/Cargo.toml index 77ea382db13e..daad256f7fbb 100644 --- a/crates/swc_ecma_compat_es2015/Cargo.toml +++ b/crates/swc_ecma_compat_es2015/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2015" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -26,8 +26,8 @@ swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.5", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -36,4 +36,4 @@ tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index 9093ef25f6f8..4c000733a403 100644 --- a/crates/swc_ecma_compat_es2016/Cargo.toml +++ b/crates/swc_ecma_compat_es2016/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2016" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,7 +16,7 @@ version = "0.4.4" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -25,4 +25,4 @@ tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index 6f3eb3a99fde..d1b351df2db6 100644 --- a/crates/swc_ecma_compat_es2017/Cargo.toml +++ b/crates/swc_ecma_compat_es2017/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2017" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,7 +19,7 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -27,4 +27,4 @@ swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index fa0da2d65de4..e27ae6399402 100644 --- a/crates/swc_ecma_compat_es2018/Cargo.toml +++ b/crates/swc_ecma_compat_es2018/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2018" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -20,7 +20,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -28,4 +28,4 @@ swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index e1cfde9ff6df..8548efdd55dc 100644 --- a/crates/swc_ecma_compat_es2019/Cargo.toml +++ b/crates/swc_ecma_compat_es2019/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2019" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,11 +19,11 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index 717045edbfc5..c32cee55ae50 100644 --- a/crates/swc_ecma_compat_es2020/Cargo.toml +++ b/crates/swc_ecma_compat_es2020/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2020" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,8 +17,8 @@ serde = { version = "1.0.188", features = ["derive"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_es2022 = { version = "0.4.4", path = "../swc_ecma_compat_es2022" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_compat_es2022 = { version = "0.4.5", path = "../swc_ecma_compat_es2022" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } @@ -26,4 +26,4 @@ tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index c2a224b86b07..75bbafc66b67 100644 --- a/crates/swc_ecma_compat_es2021/Cargo.toml +++ b/crates/swc_ecma_compat_es2021/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2021" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,7 +18,7 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2022/Cargo.toml b/crates/swc_ecma_compat_es2022/Cargo.toml index a5f60fb67b74..68516514e96c 100644 --- a/crates/swc_ecma_compat_es2022/Cargo.toml +++ b/crates/swc_ecma_compat_es2022/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2022" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -20,8 +20,8 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.5", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_compat_es3/Cargo.toml b/crates/swc_ecma_compat_es3/Cargo.toml index 2ce7efef2da0..243ac98f5526 100644 --- a/crates/swc_ecma_compat_es3/Cargo.toml +++ b/crates/swc_ecma_compat_es3/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es3" repository = "https://github.com/swc-project/swc.git" -version = "0.4.4" +version = "0.4.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,11 +17,11 @@ tracing = "0.1.37" swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index eee53c7ffbb1..376bd151c7e8 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.92.4" +version = "0.92.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -34,7 +34,7 @@ swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } testing = { version = "0.35.18", path = "../testing" } [features] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index a503d525f05d..a25813f6da17 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -60,7 +60,7 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [ ] } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" } swc_ecma_usage_analyzer = { version = "0.23.4", path = "../swc_ecma_usage_analyzer" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 01e1a53fb025..7b221ba40fa6 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -34,11 +34,11 @@ typescript = ["swc_ecma_transforms_typescript"] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat", optional = true } -swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module", optional = true } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat", optional = true } +swc_ecma_transforms_module = { version = "0.180.5", path = "../swc_ecma_transforms_module", optional = true } swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization", optional = true } -swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal", optional = true } +swc_ecma_transforms_proposal = { version = "0.171.5", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } @@ -51,5 +51,5 @@ tempfile = "3" swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 9057917a731c..146685973da8 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"] license = "Apache-2.0" name = "swc_ecma_transforms_base" repository = "https://github.com/swc-project/swc.git" -version = "0.137.4" +version = "0.137.5" [lib] bench = false diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index 2ef3e2d21287..43613e8b238d 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_classes" repository = "https://github.com/swc-project/swc.git" -version = "0.126.4" +version = "0.126.5" [lib] bench = false @@ -15,6 +15,6 @@ bench = false swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 4e7edf055acf..3c9293acf81a 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.163.4" +version = "0.163.5" [lib] bench = false @@ -33,19 +33,19 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_bugfixes = { version = "0.4.4", path = "../swc_ecma_compat_bugfixes" } +swc_ecma_compat_bugfixes = { version = "0.4.5", path = "../swc_ecma_compat_bugfixes" } swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } -swc_ecma_compat_es2015 = { version = "0.4.4", path = "../swc_ecma_compat_es2015" } -swc_ecma_compat_es2016 = { version = "0.4.4", path = "../swc_ecma_compat_es2016" } -swc_ecma_compat_es2017 = { version = "0.4.4", path = "../swc_ecma_compat_es2017" } -swc_ecma_compat_es2018 = { version = "0.4.4", path = "../swc_ecma_compat_es2018" } -swc_ecma_compat_es2019 = { version = "0.4.4", path = "../swc_ecma_compat_es2019" } -swc_ecma_compat_es2020 = { version = "0.4.4", path = "../swc_ecma_compat_es2020" } -swc_ecma_compat_es2021 = { version = "0.4.4", path = "../swc_ecma_compat_es2021" } -swc_ecma_compat_es2022 = { version = "0.4.4", path = "../swc_ecma_compat_es2022" } -swc_ecma_compat_es3 = { version = "0.4.4", path = "../swc_ecma_compat_es3" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } +swc_ecma_compat_es2015 = { version = "0.4.5", path = "../swc_ecma_compat_es2015" } +swc_ecma_compat_es2016 = { version = "0.4.5", path = "../swc_ecma_compat_es2016" } +swc_ecma_compat_es2017 = { version = "0.4.5", path = "../swc_ecma_compat_es2017" } +swc_ecma_compat_es2018 = { version = "0.4.5", path = "../swc_ecma_compat_es2018" } +swc_ecma_compat_es2019 = { version = "0.4.5", path = "../swc_ecma_compat_es2019" } +swc_ecma_compat_es2020 = { version = "0.4.5", path = "../swc_ecma_compat_es2020" } +swc_ecma_compat_es2021 = { version = "0.4.5", path = "../swc_ecma_compat_es2021" } +swc_ecma_compat_es2022 = { version = "0.4.5", path = "../swc_ecma_compat_es2022" } +swc_ecma_compat_es3 = { version = "0.4.5", path = "../swc_ecma_compat_es3" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.5", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -55,5 +55,5 @@ swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } serde_json = "1.0.66" swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index aa4c61d164de..8f08d9ddd4d5 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.180.4" +version = "0.180.5" [lib] bench = false @@ -32,7 +32,7 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = "node", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -44,6 +44,6 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing/" } diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 579c4fd3c947..e5f24daf2c6b 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -35,17 +35,17 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph" } [dev-dependencies] -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_module = { version = "0.180.5", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_proposal = { version = "0.171.5", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 8be4147f30c0..24b8e173cc9f 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_proposal" repository = "https://github.com/swc-project/swc.git" -version = "0.171.4" +version = "0.171.5" [lib] bench = false @@ -26,8 +26,8 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", optional = true } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.5", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -36,6 +36,6 @@ swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } serde_json = "1.0.66" swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 61ce6c8e6313..e9b5315158ca 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -32,14 +32,14 @@ swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen/" } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat/" } -swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat/" } +swc_ecma_transforms_module = { version = "0.180.5", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index 8605c969b4c2..705503385cf3 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_testing" repository = "https://github.com/swc-project/swc.git" -version = "0.140.4" +version = "0.140.5" [lib] bench = false @@ -29,7 +29,7 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "0.22.19", path = "../swc_ecma_testing" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index cd8266eb3827..9d811debdfe4 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -19,7 +19,7 @@ ryu-js = "1.0.0" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" } swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } @@ -29,9 +29,9 @@ criterion = "0.5" swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.5", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_proposal = { version = "0.171.5", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_testing = { version = "0.140.5", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } [[bench]] diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 781a47c32e6b..88a4bf4d61e9 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -35,7 +35,7 @@ swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier", featur "extra-serde", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.5", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.33.16", path = "../swc_html_ast" } swc_html_codegen = { version = "0.42.21", path = "../swc_html_codegen" }