chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-28 04:37:31 +00:00
parent 2813acccc2
commit fdeb7bc4fe
13 changed files with 51 additions and 48 deletions

View File

@ -11,6 +11,9 @@
- **(css/parser)** Fix parsing of colors (#6260) ([c3944ba](https://github.com/swc-project/swc/commit/c3944ba2395e54c7b557f9a71639e18458dc2a97))
- **(css/parser)** Fix various issues (#6281) ([2813acc](https://github.com/swc-project/swc/commit/2813acccc248bed17dd6a961a6684e50a814546c))
- **(es/codegen)** Preserve more parens (#6268) ([c318446](https://github.com/swc-project/swc/commit/c3184463f1b09c9e434f31313afb0b13d0404379))

22
Cargo.lock generated
View File

@ -3159,7 +3159,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.40.29"
version = "0.40.30"
dependencies = [
"binding_macros",
"once_cell",
@ -3208,7 +3208,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.137.13"
version = "0.137.14"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3236,7 +3236,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.134.12"
version = "0.134.13"
dependencies = [
"auto_impl",
"bitflags",
@ -3265,7 +3265,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.9.12"
version = "0.9.13"
dependencies = [
"once_cell",
"serde",
@ -3282,7 +3282,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.43.12"
version = "0.43.13"
dependencies = [
"auto_impl",
"parking_lot",
@ -3301,7 +3301,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.99.13"
version = "0.99.14"
dependencies = [
"criterion",
"serde",
@ -3318,7 +3318,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.10.12"
version = "0.10.13"
dependencies = [
"rustc-hash",
"serde",
@ -3335,7 +3335,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.133.12"
version = "0.133.13"
dependencies = [
"bitflags",
"criterion",
@ -3352,7 +3352,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.135.12"
version = "0.135.13"
dependencies = [
"once_cell",
"preset_env_base",
@ -4036,7 +4036,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.93.28"
version = "0.93.29"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4088,7 +4088,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.90.28"
version = "0.90.29"
dependencies = [
"criterion",
"once_cell",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.40.29"
version = "0.40.30"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -324,10 +324,10 @@ swc_bundler = { optional = true, version = "0.192.57", path
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.13", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.124.4", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.12", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.13", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.12", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.12", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.134.13", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.14", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.13", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.13", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.4", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.123.4", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.17", path = "../swc_ecma_ast" }
@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.17", path
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.13", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.9.12", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.9.13", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.28", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.137.13"
version = "0.137.14"
[package.metadata.docs.rs]
all-features = true
@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = {version = "0.124.4", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.12", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.12", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.13", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.12", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.12", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.12", path = "../swc_css_prefixer", optional = true}
swc_css_codegen = {version = "0.134.13", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.13", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.14", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.13", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.13", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.13", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}

View File

@ -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.12"
version = "0.134.13"
[lib]
bench = false
@ -27,6 +27,6 @@ swc_css_utils = { version = "0.121.4", path = "../swc_css_utils" }
swc_common = { version = "0.29.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.133.12", path = "../swc_css_parser" }
swc_css_parser = { version = "0.133.13", path = "../swc_css_parser" }
swc_css_visit = { version = "0.123.4", path = "../swc_css_visit" }
testing = { version = "0.31.13", path = "../testing" }

View File

@ -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.12"
version = "0.9.13"
[lib]
bench = false
@ -23,6 +23,6 @@ swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.134.12", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.12", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.13", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.13", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"}

View File

@ -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.12"
version = "0.43.13"
[lib]
bench = false
@ -26,5 +26,5 @@ thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.133.12", path = "../swc_css_parser" }
swc_css_parser = { version = "0.133.13", path = "../swc_css_parser" }
testing = { version = "0.31.13", path = "../testing" }

View File

@ -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.13"
version = "0.99.14"
[lib]
bench = false
@ -22,8 +22,8 @@ swc_css_visit = { version = "0.123.4", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.134.12", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.12", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.134.13", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.13", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.13", path = "../testing" }

View File

@ -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.12"
version = "0.10.13"
[lib]
bench = false
@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.13", path = "../swc_common"}
swc_css_ast = {version = "0.124.4", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.12", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.12", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.13", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.13", path = "../swc_css_parser"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.9.12", path = "../swc_css_compat"}
swc_css_compat = {version = "0.9.13", path = "../swc_css_compat"}
testing = {version = "0.31.13", path = "../testing"}

View File

@ -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.12"
version = "0.133.13"
[lib]
bench = false

View File

@ -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.12"
version = "0.135.13"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.134.12", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.12", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.13", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.13", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.93.28"
version = "0.93.29"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.4", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.9", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.28", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.90.29", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.9", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.4", path = "../swc_html_visit"}

View File

@ -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.28"
version = "0.90.29"
[lib]
bench = false
@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.4", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.134.12", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.13", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.12", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.134.13", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.14", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.13", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.17", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.28", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.57", path = "../swc_ecma_minifier" }