chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-17 12:11:23 +00:00
parent d4a733d764
commit 21b7605bee
7 changed files with 22 additions and 14 deletions

View File

@ -1,6 +1,14 @@
# Changelog
## [unreleased]
### Features
- **(css/minifier)** Handle nested `calc()` (#6153) ([d4a733d](https://github.com/swc-project/swc/commit/d4a733d76461995b7549f5470e53df913a30ef0f))
## [1.3.9] - 2022-10-17
### Bug Fixes

10
Cargo.lock generated
View File

@ -3168,7 +3168,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.38.22"
version = "0.38.23"
dependencies = [
"binding_macros",
"once_cell",
@ -3217,7 +3217,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.135.4"
version = "0.135.5"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3310,7 +3310,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.97.3"
version = "0.97.4"
dependencies = [
"criterion",
"serde",
@ -4045,7 +4045,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.88.16"
version = "0.88.17"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4097,7 +4097,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.85.16"
version = "0.85.17"
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.38.22"
version = "0.38.23"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -325,7 +325,7 @@ swc_cached = { optional = true, version = "0.3.15", path =
swc_common = { optional = true, version = "0.29.8", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.122.1", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.132.2", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.97.3", path = "../swc_css_minifier" }
swc_css_minifier = { optional = true, version = "0.97.4", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.131.2", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.133.2", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.119.1", path = "../swc_css_utils/" }

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.135.4"
version = "0.135.5"
[package.metadata.docs.rs]
all-features = true
@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
swc_css_ast = {version = "0.122.1", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.132.2", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.7.2", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.97.3", path = "../swc_css_minifier", optional = true}
swc_css_minifier = {version = "0.97.4", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.8.3", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.131.2", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.133.2", path = "../swc_css_prefixer", optional = true}

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.97.3"
version = "0.97.4"
[lib]
bench = false

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.88.16"
version = "0.88.17"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.85.16", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.85.17", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"}
swc_html_visit = {version = "0.26.10", 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.85.16"
version = "0.85.17"
[lib]
bench = false
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.8", path = "../swc_common" }
swc_css_ast = { version = "0.122.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.132.2", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.97.3", path = "../swc_css_minifier" }
swc_css_minifier = { version = "0.97.4", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.131.2", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.17", path = "../swc_ecma_codegen" }