diff --git a/CHANGELOG.md b/CHANGELOG.md index 90bded4ba350..58cba8113a22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ - **(css/parser)** Fix a small bug (#6591) ([4de378c](https://github.com/swc-project/swc/commit/4de378cb1e170df496b277bc141dacaa1c21738f)) +- **(css/parser)** Avoid skipping extra whitespaces (#6592) ([d8936ad](https://github.com/swc-project/swc/commit/d8936ade5b34f682af08e01833d629a67c54f888)) + + - **(es/parser)** Fix `typeof` in `TSCallSignatureDeclaration` (#6553) ([aa28aa0](https://github.com/swc-project/swc/commit/aa28aa0c7fefcaea063340c711a5ea8a3ba60e7b)) diff --git a/Cargo.lock b/Cargo.lock index 7732d12133b6..4f7e1f5a6fa2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -177,7 +177,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.22.5" +version = "0.22.6" dependencies = [ "anyhow", "console_error_panic_hook", @@ -3073,7 +3073,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.234.5" +version = "0.234.6" dependencies = [ "ahash", "ansi_term", @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.46.6" +version = "0.46.7" dependencies = [ "anyhow", "binding_macros", @@ -3312,7 +3312,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.142.6" +version = "0.142.7" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3340,7 +3340,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.139.5" +version = "0.139.6" dependencies = [ "auto_impl", "bitflags", @@ -3369,7 +3369,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.14.5" +version = "0.14.6" dependencies = [ "once_cell", "serde", @@ -3386,7 +3386,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.48.5" +version = "0.48.6" dependencies = [ "auto_impl", "parking_lot", @@ -3405,7 +3405,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.104.6" +version = "0.104.7" dependencies = [ "criterion", "serde", @@ -3422,7 +3422,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.15.5" +version = "0.15.6" dependencies = [ "rustc-hash", "serde", @@ -3439,7 +3439,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.138.5" +version = "0.138.6" dependencies = [ "bitflags", "criterion", @@ -3456,7 +3456,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.140.5" +version = "0.140.6" dependencies = [ "once_cell", "preset_env_base", @@ -4093,7 +4093,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.156.5" +version = "0.156.6" dependencies = [ "ahash", "anyhow", @@ -4141,7 +4141,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.98.7" +version = "0.98.8" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4193,7 +4193,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.95.7" +version = "0.95.8" dependencies = [ "criterion", "once_cell", @@ -4279,7 +4279,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.20.5" +version = "0.20.6" dependencies = [ "anyhow", "dashmap", @@ -4360,7 +4360,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.79.5" +version = "0.79.6" dependencies = [ "anyhow", "criterion", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 33cbafeeee9b..047e20992839 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.22.5" +version = "0.22.6" [lib] bench = false @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.234.5", path = "../swc" } +swc = { optional = true, version = "0.234.6", path = "../swc" } swc_common = { optional = true, version = "0.29.19", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.95.3", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "0.199.5", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 40349759b630..f6a0ea495af1 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.234.5" +version = "0.234.6" [lib] bench = false @@ -98,7 +98,7 @@ swc_ecma_visit = { version = "0.81.3", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.13.20", path = "../swc_error_reporters" } swc_node_comments = { version = "0.16.19", path = "../swc_node_comments" } swc_plugin_proxy = { version = "0.23.3", path = "../swc_plugin_proxy", optional = true } -swc_plugin_runner = { version = "0.79.5", path = "../swc_plugin_runner", optional = true, default-features = false } +swc_plugin_runner = { version = "0.79.6", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "0.17.20", 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 ad7cf2795f41..a8c2aae67a7e 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.46.6" +version = "0.46.7" [package.metadata.docs.rs] features = [ "common_perf", @@ -337,18 +337,18 @@ 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.22.5", path = "../binding_macros" } -swc = { optional = true, version = "0.234.5", path = "../swc" } +binding_macros = { optional = true, version = "0.22.6", path = "../binding_macros" } +swc = { optional = true, version = "0.234.6", path = "../swc" } swc_atoms = { optional = true, version = "0.4.25", path = "../swc_atoms" } swc_bundler = { optional = true, version = "0.193.6", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.19", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.129.2", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.139.5", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.104.6", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.15.5", path = "../swc_css_modules" } -swc_css_parser = { optional = true, version = "0.138.5", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.140.5", path = "../swc_css_prefixer" } +swc_css_codegen = { optional = true, version = "0.139.6", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.104.7", path = "../swc_css_minifier" } +swc_css_modules = { optional = true, version = "0.15.6", path = "../swc_css_modules" } +swc_css_parser = { optional = true, version = "0.138.6", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.140.6", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.126.2", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.128.2", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.95.3", path = "../swc_ecma_ast" } @@ -369,7 +369,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.160.5", path swc_ecma_utils = { optional = true, version = "0.106.5", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.81.3", path = "../swc_ecma_visit" } swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" } -swc_node_bundler = { optional = true, version = "0.20.5", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.20.6", 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" } @@ -377,8 +377,8 @@ swc_plugin_proxy = { optional = true, version = "0.23.3", path = swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.20", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.14.5", path = "../swc_css_compat", optional = true } -swc_plugin_runner = { optional = true, version = "0.79.5", path = "../swc_plugin_runner", default-features = false } +swc_css_compat = { version = "0.14.6", path = "../swc_css_compat", optional = true } +swc_plugin_runner = { optional = true, version = "0.79.6", 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 84245a27bb1d..9c0bd7547e21 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.142.6" +version = "0.142.7" [package.metadata.docs.rs] all-features = true @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = {version = "0.129.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.139.5", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.14.5", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.104.6", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.15.5", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.138.5", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.140.5", path = "../swc_css_prefixer", optional = true} +swc_css_codegen = {version = "0.139.6", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.14.6", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.104.7", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.15.6", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.138.6", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.140.6", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.126.2", path = "../swc_css_utils/"} swc_css_visit = {version = "0.128.2", path = "../swc_css_visit"} diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 8c500da02a05..be11eb9cc1fc 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.139.5" +version = "0.139.6" [lib] bench = false @@ -27,6 +27,6 @@ swc_css_utils = { version = "0.126.2", path = "../swc_css_utils" } swc_common = { version = "0.29.19", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.138.5", path = "../swc_css_parser" } +swc_css_parser = { version = "0.138.6", path = "../swc_css_parser" } swc_css_visit = { version = "0.128.2", path = "../swc_css_visit" } testing = { version = "0.31.20", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 54ce0ab4bccc..31ee3207b13f 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.14.5" +version = "0.14.6" [lib] bench = false @@ -23,6 +23,6 @@ swc_css_utils = {version = "0.126.2", path = "../swc_css_utils/"} swc_css_visit = {version = "0.128.2", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.139.5", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.138.5", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.139.6", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.138.6", path = "../swc_css_parser"} testing = {version = "0.31.20", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index 8e4d955f8766..ad79cedd4680 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.48.5" +version = "0.48.6" [lib] bench = false @@ -26,5 +26,5 @@ thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.138.5", path = "../swc_css_parser" } +swc_css_parser = { version = "0.138.6", path = "../swc_css_parser" } testing = { version = "0.31.20", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 5bf00c744d1a..158f0349308d 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.104.6" +version = "0.104.7" [lib] bench = false @@ -22,8 +22,8 @@ swc_css_visit = { version = "0.128.2", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.139.5", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.138.5", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.139.6", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.138.6", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.20", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index e5008c84093d..7697d87ad877 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.15.5" +version = "0.15.6" [lib] bench = false @@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.4.25", path = "../swc_atoms"} swc_common = {version = "0.29.19", path = "../swc_common"} swc_css_ast = {version = "0.129.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.139.5", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.138.5", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.139.6", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.138.6", path = "../swc_css_parser"} swc_css_visit = {version = "0.128.2", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.14.5", path = "../swc_css_compat"} +swc_css_compat = {version = "0.14.6", path = "../swc_css_compat"} testing = {version = "0.31.20", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 233066868951..16da9167e189 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.138.5" +version = "0.138.6" [lib] bench = false diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 19262020f805..c31ffe68db8f 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.140.5" +version = "0.140.6" [lib] bench = false @@ -24,6 +24,6 @@ swc_css_utils = {version = "0.126.2", path = "../swc_css_utils/"} swc_css_visit = {version = "0.128.2", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.139.5", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.138.5", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.139.6", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.138.6", path = "../swc_css_parser"} testing = {version = "0.31.20", path = "../testing"} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index e32a89e9d15d..a3cc2809428f 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.156.5" +version = "0.156.6" [package.metadata.docs.rs] all-features = true @@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.19", path = "../swc_node_comments/" } [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = { version = "0.234.5", path = "../swc" } +swc = { version = "0.234.6", path = "../swc" } swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.123.5", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.199.5", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 6a5cc0e0ac5f..dbde28ea40e5 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.98.7" +version = "0.98.8" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.11", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.20", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.95.7", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.95.8", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.20", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.11", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 946df69f400d..ffeead348ce4 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.95.7" +version = "0.95.8" [lib] bench = false @@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.25", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.19", path = "../swc_common" } swc_css_ast = { version = "0.129.2", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.139.5", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.104.6", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.138.5", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.139.6", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.104.7", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.138.6", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.128.5", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.160.6", path = "../swc_ecma_minifier" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index c9590ae9df38..89b6c1d5c29c 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.20.5" +version = "0.20.6" [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.234.5", path = "../swc" } +swc = { version = "0.234.6", path = "../swc" } swc_atoms = { version = "0.4.25", path = "../swc_atoms" } swc_bundler = { version = "0.193.6", path = "../swc_bundler", features = [ "concurrent", diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 080a3f1a04c3..1086df6d71a7 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.79.5" +version = "0.79.6" [lib] bench = false @@ -63,7 +63,7 @@ swc_atoms = { version = "0.4.25", path = '../swc_atoms' } swc_css_ast = { version = "0.129.2", path = "../swc_css_ast", features = [ "rkyv-impl", ] } -swc_css_parser = { version = "0.138.5", path = "../swc_css_parser" } +swc_css_parser = { version = "0.138.6", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] }