chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-11 09:28:02 +00:00
parent 9e81c2639b
commit fb2c33e132
7 changed files with 17 additions and 14 deletions

View File

@ -26,6 +26,9 @@
- **(css/minifier)** Merge more passes into the compressor (#5821) ([4fa5a27](https://github.com/swc-project/swc/commit/4fa5a2778b3fd8627f52f3040041bdcb9b86467c))
- **(css/minifier)** Merge passes and reduce clone (#5822) ([9e81c26](https://github.com/swc-project/swc/commit/9e81c2639b4182ebbc5ec87b77b4b6ba052cab72))
- **(es/minifier)** Optimize usage of `IndexSet` (#5814) ([704ea3d](https://github.com/swc-project/swc/commit/704ea3d48d8c98b7a3f7400621ef93d041c27860))

10
Cargo.lock generated
View File

@ -3110,7 +3110,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.22.16"
version = "0.22.17"
dependencies = [
"binding_macros",
"once_cell",
@ -3157,7 +3157,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.124.8"
version = "0.124.9"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3229,7 +3229,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.86.8"
version = "0.86.9"
dependencies = [
"criterion",
"serde",
@ -3947,7 +3947,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.72.14"
version = "0.72.15"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3999,7 +3999,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.69.14"
version = "0.69.15"
dependencies = [
"once_cell",
"serde",

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.22.16"
version = "0.22.17"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -306,7 +306,7 @@ swc_cached = { optional = true, version = "0.3.8", path =
swc_common = { optional = true, version = "0.28.1", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.111.1", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.121.5", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.86.8", path = "../swc_css_minifier" }
swc_css_minifier = { optional = true, version = "0.86.9", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.120.4", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.122.5", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.108.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.124.8"
version = "0.124.9"
[package.metadata.docs.rs]
all-features = true
@ -21,7 +21,7 @@ minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.111.1", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.121.5", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.86.8", path = "../swc_css_minifier", optional = true}
swc_css_minifier = {version = "0.86.9", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.120.4", path = "../swc_css_parser"}
swc_css_utils = {version = "0.108.1", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.110.1", path = "../swc_css_visit"}

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.86.8"
version = "0.86.9"
[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.72.14"
version = "0.72.15"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.25.1", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.33.1", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.69.14", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.69.15", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.30.1", path = "../swc_html_parser"}
swc_html_visit = {version = "0.25.1", 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.69.14"
version = "0.69.15"
[lib]
bench = false
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.8", path = "../swc_cached" }
swc_common = { version = "0.28.1", path = "../swc_common" }
swc_css_ast = { version = "0.111.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.121.5", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.86.8", path = "../swc_css_minifier" }
swc_css_minifier = { version = "0.86.9", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.120.4", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.91.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.124.4", path = "../swc_ecma_codegen" }