chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-19 03:28:52 +00:00
parent 35466322d6
commit 14a612447f
4 changed files with 8 additions and 5 deletions

View File

@ -19,6 +19,9 @@
- **(html/minifier)** Compress `exportparts` (#6187) ([0ba464d](https://github.com/swc-project/swc/commit/0ba464d64338973d3fa2080bb3b47ac1574cced0)) - **(html/minifier)** Compress `exportparts` (#6187) ([0ba464d](https://github.com/swc-project/swc/commit/0ba464d64338973d3fa2080bb3b47ac1574cced0))
- **(html/minifier)** Fix bugs of merging and removing metadata elements (#6200) ([3546632](https://github.com/swc-project/swc/commit/35466322d6c2e3d09c9d43e0ce773203c9d239b1))
### Features ### Features

4
Cargo.lock generated
View File

@ -4045,7 +4045,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.89.11" version = "0.89.12"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -4097,7 +4097,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.86.11" version = "0.86.12"
dependencies = [ dependencies = [
"criterion", "criterion",
"once_cell", "once_cell",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html" name = "swc_html"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.89.11" version = "0.89.12"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.26.11", path = "../swc_html_ast"} swc_html_ast = {version = "0.26.11", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.35.13", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.35.13", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.86.11", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.86.12", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.32.12", path = "../swc_html_parser"} swc_html_parser = {version = "0.32.12", path = "../swc_html_parser"}
swc_html_visit = {version = "0.26.11", path = "../swc_html_visit"} swc_html_visit = {version = "0.26.11", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_minifier" name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.86.11" version = "0.86.12"
[lib] [lib]
bench = false bench = false