From d0214c33f191f3057bb2bf59de313b0d2de4e5a1 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Fri, 7 Oct 2022 05:21:25 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 28 ++++++++++++++-------------- crates/swc_core/Cargo.toml | 16 ++++++++-------- crates/swc_css/Cargo.toml | 20 ++++++++++---------- crates/swc_css_ast/Cargo.toml | 2 +- crates/swc_css_codegen/Cargo.toml | 10 +++++----- crates/swc_css_compat/Cargo.toml | 12 ++++++------ crates/swc_css_lints/Cargo.toml | 8 ++++---- crates/swc_css_minifier/Cargo.toml | 12 ++++++------ crates/swc_css_modules/Cargo.toml | 10 +++++----- crates/swc_css_parser/Cargo.toml | 6 +++--- crates/swc_css_prefixer/Cargo.toml | 12 ++++++------ crates/swc_css_utils/Cargo.toml | 6 +++--- crates/swc_css_visit/Cargo.toml | 4 ++-- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 10 +++++----- 16 files changed, 83 insertions(+), 80 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d281048aa4..f9875a1f271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - **(css/ast)** Support `@container` at-rule (#6076) ([0a61374](https://github.com/swc-project/swc/commit/0a61374d028cc5fa3a35747cab892f3a11617dd4)) +- **(css/compat)** Implement transform for nested css (#6077) ([347d4b7](https://github.com/swc-project/swc/commit/347d4b7602d434608efb8d6fdb6874cd25aaa437)) + + - **(es/minifier)** Use `usage_count` in sequential inliner (#6071) ([ac150c7](https://github.com/swc-project/swc/commit/ac150c7ced9d9d9112d377437bdca7616de43a00)) ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 188c5aaf455..5acd02b3d88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.30.0" +version = "0.30.1" dependencies = [ "binding_macros", "once_cell", @@ -3192,7 +3192,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.128.0" +version = "0.128.1" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3207,7 +3207,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.115.0" +version = "0.115.1" dependencies = [ "bytecheck", "is-macro", @@ -3220,7 +3220,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.125.0" +version = "0.125.1" dependencies = [ "auto_impl", "bitflags", @@ -3249,7 +3249,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.1.0" +version = "0.0.1" dependencies = [ "once_cell", "preset_env_base", @@ -3267,7 +3267,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.34.0" +version = "0.34.1" dependencies = [ "auto_impl", "parking_lot", @@ -3286,7 +3286,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.90.0" +version = "0.90.1" dependencies = [ "criterion", "serde", @@ -3303,7 +3303,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.1.0" +version = "0.1.1" dependencies = [ "rustc-hash", "serde", @@ -3320,7 +3320,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.124.0" +version = "0.124.1" dependencies = [ "bitflags", "criterion", @@ -3337,7 +3337,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.126.0" +version = "0.126.1" dependencies = [ "once_cell", "preset_env_base", @@ -3355,7 +3355,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.112.0" +version = "0.112.1" dependencies = [ "once_cell", "serde", @@ -3368,7 +3368,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.114.0" +version = "0.114.1" dependencies = [ "serde", "swc_atoms", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.80.0" +version = "0.80.1" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4077,7 +4077,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.77.0" +version = "0.77.1" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 05315455702..3661728cc3f 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.30.0" +version = "0.30.1" [package.metadata.docs.rs] features = [ "common_perf", @@ -322,13 +322,13 @@ swc_atoms = { optional = true, version = "0.4.18", path = swc_bundler = { optional = true, version = "0.191.12", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.14", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.5", path = "../swc_common" } -swc_css_ast = { optional = true, version = "0.115.0", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.125.0", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.90.0", path = "../swc_css_minifier" } -swc_css_parser = { optional = true, version = "0.124.0", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.126.0", path = "../swc_css_prefixer" } -swc_css_utils = { optional = true, version = "0.112.0", path = "../swc_css_utils/" } -swc_css_visit = { optional = true, version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { optional = true, version = "0.115.1", path = "../swc_css_ast" } +swc_css_codegen = { optional = true, version = "0.125.1", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.90.1", path = "../swc_css_minifier" } +swc_css_parser = { optional = true, version = "0.124.1", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.126.1", path = "../swc_css_prefixer" } +swc_css_utils = { optional = true, version = "0.112.1", path = "../swc_css_utils/" } +swc_css_visit = { optional = true, version = "0.114.1", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.94.5", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.127.8", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.5", path = "../swc_ecma_loader" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 76b4f71ebf0..c8878bd3c70 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.128.0" +version = "0.128.1" [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.115.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.125.0", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.1.0", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.90.0", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.1.0", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.124.0", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.126.0", path = "../swc_css_prefixer", optional = true} -swc_css_utils = {version = "0.112.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.114.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.115.1", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.125.1", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.0.1", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.90.1", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.1.1", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.124.1", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.126.1", path = "../swc_css_prefixer", optional = true} +swc_css_utils = {version = "0.112.1", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.114.1", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 0b25296cd8d..ab6827ad0da 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.115.0" +version = "0.115.1" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 2b9be23a914..c073290b991 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.125.0" +version = "0.125.1" [lib] bench = false @@ -19,14 +19,14 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } -swc_css_utils = { version = "0.112.0", path = "../swc_css_utils" } +swc_css_utils = { version = "0.112.1", path = "../swc_css_utils" } [dev-dependencies] swc_common = { version = "0.29.5", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } testing = { version = "0.31.5", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index cb546525314..6f9807daf43 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.1.0" +version = "0.0.1" [lib] bench = false @@ -19,11 +19,11 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.112.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_utils = { version = "0.112.1", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.125.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.125.1", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } testing = { version = "0.31.5", path = "../testing" } diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index 50d5bb45c27..b99452d12f0 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.34.0" +version = "0.34.1" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_cached = { version = "0.3.14", path = "../swc_cached" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } testing = { version = "0.31.5", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 1e762881a02..3d5f4382ab2 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.90.0" +version = "0.90.1" [lib] bench = false @@ -16,14 +16,14 @@ bench = false serde = "1.0.118" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.112.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_utils = { version = "0.112.1", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.125.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.125.1", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } testing = { version = "0.31.5", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index cc269f91fd3..bb8f8c13d32 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.1.0" +version = "0.1.1" [lib] bench = false @@ -19,10 +19,10 @@ rustc-hash = "1.1.0" serde = { version = "1", features = ["derive"] } swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.125.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.125.1", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } swc_ecma_loader = { version = "0.41.5", path = "../swc_ecma_loader" } [dev-dependencies] diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 704e1666c20..25bed5c8e78 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.124.0" +version = "0.124.1" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } testing = { version = "0.31.5", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index ac5c9264be8..700d10ca3ea 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.126.0" +version = "0.126.1" [lib] bench = false @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.18", path = "../swc_atoms"} swc_common = {version = "0.29.5", path = "../swc_common"} -swc_css_ast = {version = "0.115.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.112.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.114.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.115.1", path = "../swc_css_ast"} +swc_css_utils = {version = "0.112.1", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.114.1", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.125.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.124.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.125.1", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.124.1", path = "../swc_css_parser"} testing = {version = "0.31.5", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index 5763a3e4211..b839cd634eb 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.112.0" +version = "0.112.1" [lib] bench = false @@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.114.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_visit = { version = "0.114.1", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 9ef96ab3727..a02360500c2 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.114.0" +version = "0.114.1" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = { version = "1", optional = true } swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } swc_visit = { version = "0.5.3", path = "../swc_visit" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index cec37cb05fe..da54c3c4a36 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.80.0" +version = "0.80.1" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.26.6", path = "../swc_html_ast"} swc_html_codegen = {version = "0.35.7", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.77.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.77.1", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.32.7", path = "../swc_html_parser"} swc_html_visit = {version = "0.26.6", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 5677e6c604c..f7bb6b69fa0 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.77.0" +version = "0.77.1" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.4.18", path = "../swc_atoms" } swc_cached = { version = "0.3.14", path = "../swc_cached" } swc_common = { version = "0.29.5", path = "../swc_common" } -swc_css_ast = { version = "0.115.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.125.0", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.90.0", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.124.0", path = "../swc_css_parser" } +swc_css_ast = { version = "0.115.1", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.125.1", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.90.1", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.124.1", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.5", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.8", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.158.12", path = "../swc_ecma_minifier" }