chore: Publish crates

This commit is contained in:
SWC Bot 2022-06-16 04:53:47 +00:00
parent d07ab2cb91
commit 276942313b
5 changed files with 12 additions and 9 deletions

View File

@ -14,6 +14,9 @@
- **(html/codegen)** Add option for tag omission of self closing void elements (#4971) ([d07ab2c](https://github.com/swc-project/swc/commit/d07ab2cb91a68ef88bd9adbdcc18217818a0c31d))
- **(html/minifier)** Compress CSS (#4973) ([3e6c0f5](https://github.com/swc-project/swc/commit/3e6c0f567a50e1b0a8ba097b3f13b866efd6ebfa))

6
Cargo.lock generated
View File

@ -3911,7 +3911,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3933,7 +3933,7 @@ dependencies = [
[[package]]
name = "swc_html_codegen"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3960,7 +3960,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"serde",
"serde_json",

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.16.0"
version = "0.17.0"
[package.metadata.docs.rs]
all-features = true
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.13.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.13.0", path = "../swc_html_minifier", optional = true}
swc_html_codegen = {version = "0.14.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.14.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.13.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.10.0", path = "../swc_html_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.13.0"
version = "0.14.0"
[lib]
bench = false

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.13.0"
version = "0.14.0"
[lib]
bench = false
@ -28,6 +28,6 @@ swc_html_ast = { version = "0.10.0", path = "../swc_html_ast" }
swc_html_visit = { version = "0.10.0", path = "../swc_html_visit" }
[dev-dependencies]
swc_html_codegen = { version = "0.13.0", path = "../swc_html_codegen" }
swc_html_codegen = { version = "0.14.0", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.13.0", path = "../swc_html_parser" }
testing = { version = "0.20.0", path = "../testing" }