diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab094588e0..58a7334c32e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ - **(es/minifier)** Handle boolean in `Evaluator` (#6756) ([8a6a1cb](https://github.com/swc-project/swc/commit/8a6a1cbcf1279b805e740f4d77ebb9fb72d52d41)) +### Testing + + + +- **(es)** Add a test for a fixed source map issue (#6768) ([6c126da](https://github.com/swc-project/swc/commit/6c126da1d42922229e9bb1c7594570f701e083ba)) + ## [1.3.25] - 2023-01-05 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 2b8ef66f1c5..1c879d5d1a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -177,7 +177,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.27.9" +version = "0.28.0" dependencies = [ "anyhow", "console_error_panic_hook", @@ -3077,7 +3077,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.238.13" +version = "0.239.0" dependencies = [ "ahash", "ansi_term", @@ -3264,7 +3264,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.52.9" +version = "0.53.0" dependencies = [ "anyhow", "binding_macros", @@ -3317,7 +3317,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.148.2" +version = "0.149.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3332,7 +3332,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.133.2" +version = "0.134.0" dependencies = [ "bytecheck", "is-macro", @@ -3345,7 +3345,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.143.2" +version = "0.144.0" dependencies = [ "auto_impl", "bitflags", @@ -3374,7 +3374,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.19.2" +version = "0.20.0" dependencies = [ "bitflags", "once_cell", @@ -3392,7 +3392,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.52.2" +version = "0.53.0" dependencies = [ "auto_impl", "parking_lot", @@ -3411,7 +3411,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.108.2" +version = "0.109.0" dependencies = [ "criterion", "serde", @@ -3428,7 +3428,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.20.2" +version = "0.21.0" dependencies = [ "rustc-hash", "serde", @@ -3445,7 +3445,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.142.2" +version = "0.143.0" dependencies = [ "bitflags", "criterion", @@ -3462,7 +3462,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.145.2" +version = "0.146.0" dependencies = [ "once_cell", "preset_env_base", @@ -3480,7 +3480,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.130.2" +version = "0.131.0" dependencies = [ "once_cell", "serde", @@ -3493,7 +3493,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.132.2" +version = "0.133.0" dependencies = [ "serde", "swc_atoms", @@ -4117,7 +4117,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.161.9" +version = "0.162.0" dependencies = [ "ahash", "anyhow", @@ -4165,7 +4165,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.102.9" +version = "0.103.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4217,7 +4217,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.99.9" +version = "0.100.0" dependencies = [ "criterion", "once_cell", @@ -4303,7 +4303,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.25.9" +version = "0.26.0" dependencies = [ "anyhow", "dashmap", @@ -4384,7 +4384,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.83.3" +version = "0.84.0" dependencies = [ "anyhow", "criterion", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 61aa296998f..595ad0ba8f5 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "binding_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.27.9" +version = "0.28.0" [lib] bench = false @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.238.13", path = "../swc" } +swc = { optional = true, version = "0.239.0", path = "../swc" } swc_common = { optional = true, version = "0.29.27", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.95.11", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "0.199.26", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index bd67acc893c..ef1bd14ba33 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.238.13" +version = "0.239.0" [lib] bench = false @@ -98,7 +98,7 @@ swc_ecma_visit = { version = "0.81.11", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.13.28", path = "../swc_error_reporters" } swc_node_comments = { version = "0.16.27", path = "../swc_node_comments" } swc_plugin_proxy = { version = "0.23.11", path = "../swc_plugin_proxy", optional = true } -swc_plugin_runner = { version = "0.83.3", path = "../swc_plugin_runner", optional = true, default-features = false } +swc_plugin_runner = { version = "0.84.0", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "0.17.29", path = "../swc_timer" } swc_visit = { version = "0.5.2", path = "../swc_visit" } tracing = "0.1.32" diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 4bc6c0d284a..3f7aee88c67 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.52.9" +version = "0.53.0" [package.metadata.docs.rs] features = [ "common_perf", @@ -340,20 +340,20 @@ wasmer = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } # swc_* dependencies -binding_macros = { optional = true, version = "0.27.9", path = "../binding_macros" } -swc = { optional = true, version = "0.238.13", path = "../swc" } +binding_macros = { optional = true, version = "0.28.0", path = "../binding_macros" } +swc = { optional = true, version = "0.239.0", path = "../swc" } swc_atoms = { optional = true, version = "0.4.32", path = "../swc_atoms" } swc_bundler = { optional = true, version = "0.193.37", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.27", path = "../swc_common" } -swc_css_ast = { optional = true, version = "0.133.2", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.143.2", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.108.2", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.20.2", path = "../swc_css_modules" } -swc_css_parser = { optional = true, version = "0.142.2", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.145.2", path = "../swc_css_prefixer" } -swc_css_utils = { optional = true, version = "0.130.2", path = "../swc_css_utils/" } -swc_css_visit = { optional = true, version = "0.132.2", path = "../swc_css_visit" } +swc_css_ast = { optional = true, version = "0.134.0", path = "../swc_css_ast" } +swc_css_codegen = { optional = true, version = "0.144.0", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.109.0", path = "../swc_css_minifier" } +swc_css_modules = { optional = true, version = "0.21.0", path = "../swc_css_modules" } +swc_css_parser = { optional = true, version = "0.143.0", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.146.0", path = "../swc_css_prefixer" } +swc_css_utils = { optional = true, version = "0.131.0", path = "../swc_css_utils/" } +swc_css_visit = { optional = true, version = "0.133.0", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.95.11", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.128.18", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.28", path = "../swc_ecma_loader" } @@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.1.13", path = swc_ecma_utils = { optional = true, version = "0.106.18", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.81.11", path = "../swc_ecma_visit" } swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" } -swc_node_bundler = { optional = true, version = "0.25.9", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.26.0", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" } @@ -381,8 +381,8 @@ swc_plugin_proxy = { optional = true, version = "0.23.11", path swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.29", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.19.2", path = "../swc_css_compat", optional = true } -swc_plugin_runner = { optional = true, version = "0.83.3", path = "../swc_plugin_runner", default-features = false } +swc_css_compat = { version = "0.20.0", path = "../swc_css_compat", optional = true } +swc_plugin_runner = { optional = true, version = "0.84.0", path = "../swc_plugin_runner", default-features = false } [build-dependencies] vergen = { version = "7.3.2", default-features = false, features = ["cargo"] } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index ef23c7cff73..0a7e69e7f2b 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.148.2" +version = "0.149.0" [package.metadata.docs.rs] all-features = true @@ -22,12 +22,12 @@ modules = ["swc_css_modules"] prefixer = ["swc_css_prefixer"] [dependencies] -swc_css_ast = {version = "0.133.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.143.2", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.19.2", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.108.2", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.20.2", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.142.2", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.145.2", path = "../swc_css_prefixer", optional = true} -swc_css_utils = {version = "0.130.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.132.2", path = "../swc_css_visit"} +swc_css_ast = {version = "0.134.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.144.0", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.20.0", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.109.0", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.21.0", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.143.0", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.146.0", path = "../swc_css_prefixer", optional = true} +swc_css_utils = {version = "0.131.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.133.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 1c136b85de8..01440737914 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.133.2" +version = "0.134.0" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 58504326645..d01a713d109 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.143.2" +version = "0.144.0" [lib] bench = false @@ -19,14 +19,14 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } -swc_css_utils = { version = "0.130.2", path = "../swc_css_utils" } +swc_css_utils = { version = "0.131.0", path = "../swc_css_utils" } [dev-dependencies] swc_common = { version = "0.29.27", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.142.2", path = "../swc_css_parser" } -swc_css_visit = { version = "0.132.2", path = "../swc_css_visit" } +swc_css_parser = { version = "0.143.0", path = "../swc_css_parser" } +swc_css_visit = { version = "0.133.0", path = "../swc_css_visit" } testing = { version = "0.31.29", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 652638c7cf6..231d6256ee7 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.19.2" +version = "0.20.0" [lib] bench = false @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.32", path = "../swc_atoms"} swc_common = {version = "0.29.27", path = "../swc_common"} -swc_css_ast = {version = "0.133.2", path = "../swc_css_ast"} -swc_css_utils = {version = "0.130.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.132.2", path = "../swc_css_visit"} +swc_css_ast = {version = "0.134.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.131.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.133.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.143.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.142.2", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.144.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.143.0", path = "../swc_css_parser"} testing = {version = "0.31.29", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index f419325203a..7f25cc5e9d9 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.52.2" +version = "0.53.0" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } -swc_css_visit = { version = "0.132.2", path = "../swc_css_visit" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.133.0", path = "../swc_css_visit" } thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.142.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.0", path = "../swc_css_parser" } testing = { version = "0.31.29", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 3238abfd380..0a37043e0a8 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.108.2" +version = "0.109.0" [lib] bench = false @@ -16,14 +16,14 @@ bench = false serde = "1.0.118" swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } -swc_css_utils = { version = "0.130.2", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.132.2", path = "../swc_css_visit" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } +swc_css_utils = { version = "0.131.0", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.133.0", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.143.2", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.142.2", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.144.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.143.0", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.29", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index eb45c814646..619ac9edffb 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_modules" repository = "https://github.com/swc-project/swc.git" -version = "0.20.2" +version = "0.21.0" [lib] bench = false @@ -19,12 +19,12 @@ rustc-hash = "1.1.0" serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.4.32", path = "../swc_atoms"} swc_common = {version = "0.29.27", path = "../swc_common"} -swc_css_ast = {version = "0.133.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.143.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.142.2", path = "../swc_css_parser"} -swc_css_visit = {version = "0.132.2", path = "../swc_css_visit"} +swc_css_ast = {version = "0.134.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.144.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.143.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.133.0", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.19.2", path = "../swc_css_compat"} +swc_css_compat = {version = "0.20.0", path = "../swc_css_compat"} testing = {version = "0.31.29", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 5896b1e7962..f74578b0253 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.142.2" +version = "0.143.0" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.132.2", path = "../swc_css_visit" } +swc_css_visit = { version = "0.133.0", path = "../swc_css_visit" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.29", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 5ea376dbe43..5d276120375 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.145.2" +version = "0.146.0" [lib] bench = false @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.32", path = "../swc_atoms"} swc_common = {version = "0.29.27", path = "../swc_common"} -swc_css_ast = {version = "0.133.2", path = "../swc_css_ast"} -swc_css_utils = {version = "0.130.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.132.2", path = "../swc_css_visit"} +swc_css_ast = {version = "0.134.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.131.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.133.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.143.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.142.2", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.144.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.143.0", path = "../swc_css_parser"} testing = {version = "0.31.29", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index 29e47c66158..471ca31b9d7 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_css_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.130.2" +version = "0.131.0" [lib] bench = false @@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } -swc_css_visit = { version = "0.132.2", path = "../swc_css_visit" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.133.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 208fdc7eaf4..67d3bc5900e 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.132.2" +version = "0.133.0" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = { version = "1", optional = true } swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } swc_visit = { version = "0.5.3", path = "../swc_visit" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index ebbad34e133..557b5ce0779 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.161.9" +version = "0.162.0" [package.metadata.docs.rs] all-features = true @@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.27", path = "../swc_node_comments/" } [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = { version = "0.238.13", path = "../swc" } +swc = { version = "0.239.0", path = "../swc" } swc_ecma_ast = { version = "0.95.11", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.123.16", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.199.26", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index d6b1d23ac16..39fbe5a24e0 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.102.9" +version = "0.103.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.19", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.31", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.99.9", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.100.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.30", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.19", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index adb83c09724..e99ef9163b6 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.99.9" +version = "0.100.0" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.27", path = "../swc_common" } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.143.2", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.108.2", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.142.2", path = "../swc_css_parser" } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.144.0", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.109.0", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.143.0", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.11", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.128.18", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.160.37", path = "../swc_ecma_minifier" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 69f5e1b4d58..500bb8599cf 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_node_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.25.9" +version = "0.26.0" [lib] bench = false @@ -26,7 +26,7 @@ regex = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" string_enum = { version = "0.3.2", path = "../string_enum" } -swc = { version = "0.238.13", path = "../swc" } +swc = { version = "0.239.0", path = "../swc" } swc_atoms = { version = "0.4.32", path = "../swc_atoms" } swc_bundler = { version = "0.193.37", path = "../swc_bundler", features = [ "concurrent", diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 7929c587389..e85eed7385e 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.83.3" +version = "0.84.0" [lib] bench = false @@ -45,7 +45,7 @@ serde_json = "1.0.64" swc_common = { version = "0.29.27", path = "../swc_common", features = [ "concurrent", ] } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast", optional = true } +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast", optional = true } swc_ecma_ast = { version = "0.95.11", path = "../swc_ecma_ast", optional = true } swc_plugin_proxy = { version = "0.23.11", path = "../swc_plugin_proxy" } tracing = "0.1.32" @@ -60,10 +60,10 @@ wasmer-engine-universal = { version = "2.3.0" } [dev-dependencies] criterion = "0.3" swc_atoms = { version = "0.4.32", path = '../swc_atoms' } -swc_css_ast = { version = "0.133.2", path = "../swc_css_ast", features = [ +swc_css_ast = { version = "0.134.0", path = "../swc_css_ast", features = [ "rkyv-impl", ] } -swc_css_parser = { version = "0.142.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.0", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.11", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] }