diff --git a/CHANGELOG.md b/CHANGELOG.md index 11bc6a9d8f3..d8b6b020baf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog ## [unreleased] +### Refactor + + + +- **(css/parser)** Refactor more (#6251) ([a0e4684](https://github.com/swc-project/swc/commit/a0e4684476e1dba7afec7ac732044d44bb06ef6d)) + +## [1.3.11] - 2022-10-26 + ### Bug Fixes @@ -38,10 +46,13 @@ - **(bindings)** Fix type (#6184) ([2bafd53](https://github.com/swc-project/swc/commit/2bafd53e96b7101b9e7ceb6b34a88c8c826ef9d5)) +- **(ci)** Fix publish action ([3916886](https://github.com/swc-project/swc/commit/39168865c81d7358867cff3c4edbfdc7092d376c)) + + - **(es/minifier)** Configure fuzzer (#6246) ([d454488](https://github.com/swc-project/swc/commit/d4544884ee8896248f7f1099e204ce906da4ede2)) -- **(es/parser)** Typo (#6228) ([61e63df](https://github.com/swc-project/swc/commit/61e63df0a06a349664f6569f2de8d183c6a43fd9)) +- **(es/parser)** Typo (#6228) ([61e63df](https://github.com/swc-project/swc/commit/61e63df0a06a349664f6569f2de8d183c6a43fd9))- **general**: Fix publish action ([83c9850](https://github.com/swc-project/swc/commit/83c98507e7aa2adf52054466a7b7462b1361de2c)) ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 4abd6f1fc62..c8fda004cb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.40.19" +version = "0.40.20" dependencies = [ "binding_macros", "once_cell", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.137.7" +version = "0.137.8" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3232,7 +3232,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.124.0" +version = "0.124.1" dependencies = [ "bytecheck", "is-macro", @@ -3245,7 +3245,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.134.6" +version = "0.134.7" dependencies = [ "auto_impl", "bitflags", @@ -3274,7 +3274,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.9.6" +version = "0.9.7" dependencies = [ "once_cell", "serde", @@ -3291,7 +3291,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.43.6" +version = "0.43.7" dependencies = [ "auto_impl", "parking_lot", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.99.7" +version = "0.99.8" dependencies = [ "criterion", "serde", @@ -3327,7 +3327,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.10.6" +version = "0.10.7" dependencies = [ "rustc-hash", "serde", @@ -3344,7 +3344,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.133.6" +version = "0.133.7" dependencies = [ "bitflags", "criterion", @@ -3361,7 +3361,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.135.6" +version = "0.135.7" dependencies = [ "once_cell", "preset_env_base", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.121.0" +version = "0.121.1" dependencies = [ "once_cell", "serde", @@ -3392,7 +3392,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.123.0" +version = "0.123.1" dependencies = [ "serde", "swc_atoms", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.15" +version = "0.93.16" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.15" +version = "0.90.16" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 4f29a514994..088a768818e 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.40.19" +version = "0.40.20" [package.metadata.docs.rs] features = [ "common_perf", @@ -323,13 +323,13 @@ swc_atoms = { optional = true, version = "0.4.23", path = swc_bundler = { optional = true, version = "0.192.50", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.10", path = "../swc_common" } -swc_css_ast = { optional = true, version = "0.124.0", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.134.6", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.99.7", path = "../swc_css_minifier" } -swc_css_parser = { optional = true, version = "0.133.6", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.135.6", path = "../swc_css_prefixer" } -swc_css_utils = { optional = true, version = "0.121.0", path = "../swc_css_utils/" } -swc_css_visit = { optional = true, version = "0.123.0", path = "../swc_css_visit" } +swc_css_ast = { optional = true, version = "0.124.1", path = "../swc_css_ast" } +swc_css_codegen = { optional = true, version = "0.134.7", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.99.8", path = "../swc_css_minifier" } +swc_css_parser = { optional = true, version = "0.133.7", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.135.7", path = "../swc_css_prefixer" } +swc_css_utils = { optional = true, version = "0.121.1", path = "../swc_css_utils/" } +swc_css_visit = { optional = true, version = "0.123.1", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.94.14", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.127.24", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.11", path = "../swc_ecma_loader" } @@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.14", path swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.10", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.9.6", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.9.7", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.77.25", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index d5825797819..13f6dfc9c3c 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.137.7" +version = "0.137.8" [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.124.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.6", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.9.6", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.99.7", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.10.6", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.133.6", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.135.6", path = "../swc_css_prefixer", optional = true} -swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.124.1", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.134.7", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.9.7", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.99.8", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.10.7", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.133.7", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.135.7", path = "../swc_css_prefixer", optional = true} +swc_css_utils = {version = "0.121.1", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.123.1", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 7680d929f79..6fd7317f278 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.124.0" +version = "0.124.1" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 176451f90c7..770b0ad4978 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.134.6" +version = "0.134.7" [lib] bench = false @@ -19,14 +19,14 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } -swc_css_utils = { version = "0.121.0", path = "../swc_css_utils" } +swc_css_utils = { version = "0.121.1", path = "../swc_css_utils" } [dev-dependencies] swc_common = { version = "0.29.10", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.133.6", path = "../swc_css_parser" } -swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } +swc_css_parser = { version = "0.133.7", path = "../swc_css_parser" } +swc_css_visit = { version = "0.123.1", path = "../swc_css_visit" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index a782d3a2aba..9e96ae82d91 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.9.6" +version = "0.9.7" [lib] bench = false @@ -18,11 +18,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.23", path = "../swc_atoms"} swc_common = {version = "0.29.10", path = "../swc_common"} -swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.124.1", path = "../swc_css_ast"} +swc_css_utils = {version = "0.121.1", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.123.1", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.6", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.6", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.134.7", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.7", path = "../swc_css_parser"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index b9c74ccff28..09681ea6a18 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.43.6" +version = "0.43.7" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } +swc_css_visit = { version = "0.123.1", path = "../swc_css_visit" } thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.133.6", path = "../swc_css_parser" } +swc_css_parser = { version = "0.133.7", path = "../swc_css_parser" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index a90b3582e45..9252d014b0c 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.99.7" +version = "0.99.8" [lib] bench = false @@ -16,14 +16,14 @@ bench = false serde = "1.0.118" swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.121.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } +swc_css_utils = { version = "0.121.1", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.123.1", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.134.6", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.133.6", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.134.7", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.133.7", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 0764b87cae9..54c5aa7f6dc 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.10.6" +version = "0.10.7" [lib] bench = false @@ -19,12 +19,12 @@ rustc-hash = "1.1.0" serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.4.23", path = "../swc_atoms"} swc_common = {version = "0.29.10", path = "../swc_common"} -swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.6", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.6", path = "../swc_css_parser"} -swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.124.1", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.134.7", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.7", path = "../swc_css_parser"} +swc_css_visit = {version = "0.123.1", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.9.6", path = "../swc_css_compat"} +swc_css_compat = {version = "0.9.7", path = "../swc_css_compat"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 2ad8a9efa05..24329ae0370 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.133.6" +version = "0.133.7" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } +swc_css_visit = { version = "0.123.1", path = "../swc_css_visit" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 354082dbe59..4459cbee479 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.135.6" +version = "0.135.7" [lib] bench = false @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.23", path = "../swc_atoms"} swc_common = {version = "0.29.10", path = "../swc_common"} -swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.124.1", path = "../swc_css_ast"} +swc_css_utils = {version = "0.121.1", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.123.1", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.6", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.6", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.134.7", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.7", path = "../swc_css_parser"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index 1b931b5b213..8b786ed074f 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.121.0" +version = "0.121.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.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } +swc_css_visit = { version = "0.123.1", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 11e016066e7..ce9507c296b 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.123.0" +version = "0.123.1" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = { version = "1", optional = true } swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.124.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 6ddad958658..c107f1d287e 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.93.15" +version = "0.93.16" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.5", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.15", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.90.16", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.5", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.1", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index bf8f0b6edbf..c816398de33 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.90.15" +version = "0.90.16" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.10", path = "../swc_common" } -swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.134.6", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.99.7", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.133.6", path = "../swc_css_parser" } +swc_css_ast = { version = "0.124.1", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.134.7", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.99.8", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.133.7", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.14", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.24", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.159.50", path = "../swc_ecma_minifier" }