From 0a13105e84e73ac3079514af9bcc1487a9b9c008 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 11 Jul 2022 09:00:07 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 ++ Cargo.lock | 32 +++++++++---------- crates/dbg-swc/Cargo.toml | 4 +-- crates/swc/Cargo.toml | 12 +++---- crates/swc_bundler/Cargo.toml | 10 +++--- crates/swc_cli/Cargo.toml | 4 +-- crates/swc_ecma_minifier/Cargo.toml | 4 +-- crates/swc_ecma_preset_env/Cargo.toml | 4 +-- crates/swc_ecma_transforms/Cargo.toml | 10 +++--- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- .../Cargo.toml | 8 ++--- crates/swc_ecma_transforms_react/Cargo.toml | 4 +-- .../swc_ecma_transforms_typescript/Cargo.toml | 4 +-- crates/swc_ecmascript/Cargo.toml | 8 ++--- crates/swc_estree_compat/Cargo.toml | 6 ++-- crates/swc_html/Cargo.toml | 4 +-- crates/swc_html_minifier/Cargo.toml | 4 +-- crates/swc_plugin/Cargo.toml | 4 +-- 18 files changed, 65 insertions(+), 62 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65f69079529..d25c8f77380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(es/modules)** Add the missing span for `export default` (#5170) ([997240c](https://github.com/swc-project/swc/commit/997240cfe68ff7787d73e93758f2d2304715e249)) + +- **(es/modules)** Keep TDZ for `export default` if possible (#5164) ([56ad09a](https://github.com/swc-project/swc/commit/56ad09afb245b940a660a394908c1501fa5781ef)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 09a92263d0e..c204fc55d3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -768,7 +768,7 @@ dependencies = [ [[package]] name = "dbg-swc" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "clap 3.1.0", @@ -2935,7 +2935,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.205.0" +version = "0.206.0" dependencies = [ "ahash", "ansi_term", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.168.0" +version = "0.169.0" dependencies = [ "ahash", "anyhow", @@ -3063,7 +3063,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.79.0" +version = "0.80.0" dependencies = [ "anyhow", "atty", @@ -3402,7 +3402,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.135.0" +version = "0.136.0" dependencies = [ "ahash", "ansi_term", @@ -3467,7 +3467,7 @@ dependencies = [ [[package]] name = "swc_ecma_preset_env" -version = "0.149.0" +version = "0.150.0" dependencies = [ "ahash", "anyhow", @@ -3537,7 +3537,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.174.0" +version = "0.175.0" dependencies = [ "pretty_assertions", "sourcemap", @@ -3642,7 +3642,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.130.1" +version = "0.131.0" dependencies = [ "Inflector", "ahash", @@ -3672,7 +3672,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.143.0" +version = "0.144.0" dependencies = [ "ahash", "dashmap", @@ -3724,7 +3724,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_react" -version = "0.132.0" +version = "0.133.0" dependencies = [ "ahash", "base64 0.13.0", @@ -3776,7 +3776,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_typescript" -version = "0.136.0" +version = "0.137.0" dependencies = [ "criterion", "serde", @@ -3825,7 +3825,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.179.0" +version = "0.180.0" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", @@ -3872,7 +3872,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.126.0" +version = "0.127.0" dependencies = [ "ahash", "anyhow", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.38.0" +version = "0.39.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3969,7 +3969,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.35.0" +version = "0.36.0" dependencies = [ "once_cell", "serde", @@ -4101,7 +4101,7 @@ dependencies = [ [[package]] name = "swc_plugin" -version = "0.77.1" +version = "0.78.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 4076f822530..28b398fe303 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "dbg-swc" repository = "https://github.com/kdy1/dbg-swc.git" -version = "0.34.0" +version = "0.35.0" [[bin]] bench = false @@ -22,7 +22,7 @@ swc_common = { version = "0.23.0", features = [ ], path = "../swc_common" } swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.135.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.136.0", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 16fa47c8bb6..3e0c9a0befa 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.205.0" +version = "0.206.0" [lib] bench = false @@ -61,10 +61,10 @@ swc_ecma_loader = {version = "0.35.0", path = "../swc_ecma_loader", features = [ "node", "tsc", ]} -swc_ecma_minifier = {version = "0.135.0", path = "../swc_ecma_minifier"} +swc_ecma_minifier = {version = "0.136.0", path = "../swc_ecma_minifier"} swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"} -swc_ecma_preset_env = {version = "0.149.0", path = "../swc_ecma_preset_env"} -swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", features = [ +swc_ecma_preset_env = {version = "0.150.0", path = "../swc_ecma_preset_env"} +swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -74,10 +74,10 @@ swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", fea ]} swc_ecma_transforms_base = {version = "0.97.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_compat = {version = "0.114.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_optimization = {version = "0.143.0", path = "../swc_ecma_transforms_optimization"} +swc_ecma_transforms_optimization = {version = "0.144.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"} -swc_ecmascript = {version = "0.179.0", path = "../swc_ecmascript"} +swc_ecmascript = {version = "0.180.0", path = "../swc_ecmascript"} swc_error_reporters = {version = "0.7.0", path = "../swc_error_reporters"} swc_node_comments = {version = "0.10.0", path = "../swc_node_comments"} swc_plugin_proxy = {version = "0.11.0", path = "../swc_plugin_proxy", optional = true} diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 3d925206bf8..a113fa2edec 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"] license = "Apache-2.0" name = "swc_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.168.0" +version = "0.169.0" [package.metadata.docs.rs] all-features = true @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.35.0", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.143.0", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.144.0", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.93.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.11.0", path = "../swc_fast_graph/" } @@ -61,10 +61,10 @@ swc_ecma_loader = { version = "0.35.0", path = "../swc_ecma_loader", features = "node", "cache", ] } -swc_ecma_minifier = { version = "0.135.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.136.0", path = "../swc_ecma_minifier" } swc_ecma_transforms_proposal = { version = "0.122.0", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { version = "0.132.0", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_typescript = { version = "0.136.0", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_react = { version = "0.133.0", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_typescript = { version = "0.137.0", path = "../swc_ecma_transforms_typescript" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } tempfile = "3.1.0" testing = { version = "0.25.0", path = "../testing" } diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index 27f13f1a0eb..97c2c7ddc6d 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli" repository = "https://github.com/swc-project/swc.git" -version = "0.79.0" +version = "0.80.0" [[bin]] bench = false @@ -32,7 +32,7 @@ rayon = "1" relative-path = "1.6.1" serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["unbounded_depth"] } -swc = { version = "0.205.0", path = "../swc" } +swc = { version = "0.206.0", path = "../swc" } swc_common = { version = "0.23.0", path = "../swc_common" } swc_plugin_runner = { version = "0.64.0", path = "../swc_plugin_runner", default-features = false, optional = true } swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index e2b82f90af0..68df56f1995 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.135.0" +version = "0.136.0" [package.metadata.docs.rs] all-features = true @@ -43,7 +43,7 @@ swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.115.0", path = "../swc_ecma_codegen"} swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.97.0", path = "../swc_ecma_transforms_base", features = ["concurrent-renamer"]} -swc_ecma_transforms_optimization = {version = "0.143.0", path = "../swc_ecma_transforms_optimization"} +swc_ecma_transforms_optimization = {version = "0.144.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"} swc_timer = {version = "0.11.0", path = "../swc_timer"} diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index cef07e0b3f1..c0cd3b4b98b 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_ecma_preset_env" -version = "0.149.0" +version = "0.150.0" [lib] bench = false @@ -26,7 +26,7 @@ string_enum = {version = "0.3.1", path = "../string_enum"} swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_common = { version = "0.23.0", path = "../swc_common"} swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} -swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", features = [ +swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms", features = [ "compat", "proposal", ]} diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 8137d1d1776..858f198bfeb 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.174.0" +version = "0.175.0" [package.metadata.docs.rs] all-features = true @@ -36,11 +36,11 @@ swc_common = { version = "0.23.0", path = "../swc_common" } swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.114.0", path = "../swc_ecma_transforms_compat", optional = true } -swc_ecma_transforms_module = { version = "0.130.0", path = "../swc_ecma_transforms_module", optional = true } -swc_ecma_transforms_optimization = { version = "0.143.0", path = "../swc_ecma_transforms_optimization", optional = true } +swc_ecma_transforms_module = { version = "0.131.0", path = "../swc_ecma_transforms_module", optional = true } +swc_ecma_transforms_optimization = { version = "0.144.0", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_proposal = { version = "0.122.0", path = "../swc_ecma_transforms_proposal", optional = true } -swc_ecma_transforms_react = { version = "0.132.0", path = "../swc_ecma_transforms_react", optional = true } -swc_ecma_transforms_typescript = { version = "0.136.0", path = "../swc_ecma_transforms_typescript", optional = true } +swc_ecma_transforms_react = { version = "0.133.0", path = "../swc_ecma_transforms_react", optional = true } +swc_ecma_transforms_typescript = { version = "0.137.0", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_utils = { version = "0.93.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 08a8be4154a..ee1124f6288 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.130.1" +version = "0.131.0" [lib] bench = false diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index ff45ed39632..415d9469540 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_optimization" repository = "https://github.com/swc-project/swc.git" -version = "0.143.0" +version = "0.144.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -37,9 +37,9 @@ tracing = "0.1.32" [dev-dependencies] swc_ecma_transforms_compat = {version = "0.114.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_module = {version = "0.130.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_module = {version = "0.131.0", path = "../swc_ecma_transforms_module"} swc_ecma_transforms_proposal = {version = "0.122.0", path = "../swc_ecma_transforms_proposal"} -swc_ecma_transforms_react = {version = "0.132.0", path = "../swc_ecma_transforms_react"} +swc_ecma_transforms_react = {version = "0.133.0", path = "../swc_ecma_transforms_react"} swc_ecma_transforms_testing = {version = "0.99.0", path = "../swc_ecma_transforms_testing"} -swc_ecma_transforms_typescript = {version = "0.136.0", path = "../swc_ecma_transforms_typescript"} +swc_ecma_transforms_typescript = {version = "0.137.0", path = "../swc_ecma_transforms_typescript"} testing = {version = "0.25.0", path = "../testing"} diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index bd8eeeb4c75..8bee57614ab 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_react" repository = "https://github.com/swc-project/swc.git" -version = "0.132.0" +version = "0.133.0" [lib] bench = false @@ -39,6 +39,6 @@ swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"} [dev-dependencies] swc_ecma_codegen = {version = "0.115.0", path = "../swc_ecma_codegen/"} swc_ecma_transforms_compat = {version = "0.114.0", path = "../swc_ecma_transforms_compat/"} -swc_ecma_transforms_module = {version = "0.130.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_module = {version = "0.131.0", path = "../swc_ecma_transforms_module"} swc_ecma_transforms_testing = {version = "0.99.0", path = "../swc_ecma_transforms_testing"} testing = {version = "0.25.0", path = "../testing"} diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 71f1bd8e49e..967bb5668ff 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_typescript" repository = "https://github.com/swc-project/swc.git" -version = "0.136.0" +version = "0.137.0" [lib] bench = false @@ -18,7 +18,7 @@ swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_common = { version = "0.23.0", path = "../swc_common"} swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.97.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_react = {version = "0.132.0", path = "../swc_ecma_transforms_react"} +swc_ecma_transforms_react = {version = "0.133.0", path = "../swc_ecma_transforms_react"} swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"} diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 9ddbb62d2b1..2f235f06641 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.179.0" +version = "0.180.0" [package.metadata.docs.rs] all-features = true @@ -40,10 +40,10 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.115.0", path = "../swc_ecma_codegen", optional = true} swc_ecma_dep_graph = {version = "0.83.0", path = "../swc_ecma_dep_graph", optional = true} -swc_ecma_minifier = {version = "0.135.0", path = "../swc_ecma_minifier", optional = true} +swc_ecma_minifier = {version = "0.136.0", path = "../swc_ecma_minifier", optional = true} swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser", optional = true, default-features = false} -swc_ecma_preset_env = {version = "0.149.0", path = "../swc_ecma_preset_env", optional = true} -swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", optional = true} +swc_ecma_preset_env = {version = "0.150.0", path = "../swc_ecma_preset_env", optional = true} +swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms", optional = true} swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils", optional = true} swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit", optional = true} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index a28f06533de..8b6356253ea 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.126.0" +version = "0.127.0" [package.metadata.docs.rs] all-features = true @@ -38,10 +38,10 @@ swc_node_comments = {version = "0.10.0", path = "../swc_node_comments/"} [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = {version = "0.205.0", path = "../swc"} +swc = {version = "0.206.0", path = "../swc"} swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"} -swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms/"} +swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms/"} testing = {version = "0.25.0", path = "../testing"} walkdir = "2" diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 162e30022a7..416fe57a87b 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.38.0" +version = "0.39.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.17.0", path = "../swc_html_ast"} swc_html_codegen = {version = "0.22.0", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.35.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.36.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.20.0", path = "../swc_html_parser"} swc_html_visit = {version = "0.17.0", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index c09e6e17fef..a5a28f8bfbf 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.35.0" +version = "0.36.0" [lib] bench = false @@ -30,7 +30,7 @@ swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" } -swc_ecma_minifier = { version = "0.135.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.136.0", path = "../swc_ecma_minifier" } swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.17.0", path = "../swc_html_ast" } swc_html_codegen = { version = "0.22.0", path = "../swc_html_codegen" } diff --git a/crates/swc_plugin/Cargo.toml b/crates/swc_plugin/Cargo.toml index 5761441c5fc..9b1cb99baab 100644 --- a/crates/swc_plugin/Cargo.toml +++ b/crates/swc_plugin/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_plugin" repository = "https://github.com/swc-project/swc.git" -version = "0.77.1" +version = "0.78.0" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [ "plugin-transform-schema-v1" ] } swc_ecma_quote = { version = "0.25.0", path = "../swc_ecma_quote", optional = true } -swc_ecmascript = { version = "0.179.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] } +swc_ecmascript = { version = "0.180.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] } swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [ "plugin-mode", ] }