chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-06 13:08:27 +00:00
parent 78955995a2
commit 79b2279470
7 changed files with 17 additions and 14 deletions

View File

@ -64,6 +64,9 @@
- **(css/minifier)** Remove more redundant clones (#6580) ([4171ee7](https://github.com/swc-project/swc/commit/4171ee7fb353966c5a11e4701b2bdf28bc895ad1))
- **(css/minifier)** Improve performance (#6583) ([7895599](https://github.com/swc-project/swc/commit/78955995a2fd381a9d56a325e368aa29dcc3c7be))
### Refactor

10
Cargo.lock generated
View File

@ -3260,7 +3260,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.46.2"
version = "0.46.3"
dependencies = [
"anyhow",
"binding_macros",
@ -3312,7 +3312,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.142.2"
version = "0.142.3"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3405,7 +3405,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.104.2"
version = "0.104.3"
dependencies = [
"criterion",
"serde",
@ -4141,7 +4141,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.98.2"
version = "0.98.3"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4193,7 +4193,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.95.2"
version = "0.95.3"
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.46.2"
version = "0.46.3"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -345,7 +345,7 @@ swc_cached = { optional = true, version = "0.3.15", path =
swc_common = { optional = true, version = "0.29.19", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.129.2", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.139.2", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.104.2", path = "../swc_css_minifier" }
swc_css_minifier = { optional = true, version = "0.104.3", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.15.2", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.138.2", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.140.2", path = "../swc_css_prefixer" }

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.142.2"
version = "0.142.3"
[package.metadata.docs.rs]
all-features = true
@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
swc_css_ast = {version = "0.129.2", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.139.2", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.14.2", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.104.2", path = "../swc_css_minifier", optional = true}
swc_css_minifier = {version = "0.104.3", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.15.2", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.138.2", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.140.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.104.2"
version = "0.104.3"
[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.98.2"
version = "0.98.3"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.10", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.19", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.95.2", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.95.3", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.19", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.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.95.2"
version = "0.95.3"
[lib]
bench = false
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.19", path = "../swc_common" }
swc_css_ast = { version = "0.129.2", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.139.2", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.104.2", path = "../swc_css_minifier" }
swc_css_minifier = { version = "0.104.3", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.138.2", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.5", path = "../swc_ecma_codegen" }