chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-21 12:52:30 +00:00
parent 8b6b9c0961
commit 67c5af7762
7 changed files with 20 additions and 14 deletions

View File

@ -7,6 +7,12 @@
- **(es/minifier)** Preserve `this` in more cases (#6226) ([e9d421b](https://github.com/swc-project/swc/commit/e9d421bd959c93fa0ef1261865e50937321d5717))
### Features
- **(css/minifier)** Merge rules (#6220) ([8b6b9c0](https://github.com/swc-project/swc/commit/8b6b9c0961b76a8b9a3eff208af73a48005b6aeb))
### Miscellaneous Tasks

10
Cargo.lock generated
View File

@ -3168,7 +3168,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.40.8"
version = "0.40.9"
dependencies = [
"binding_macros",
"once_cell",
@ -3217,7 +3217,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.137.2"
version = "0.137.3"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3310,7 +3310,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.99.2"
version = "0.99.3"
dependencies = [
"criterion",
"serde",
@ -4045,7 +4045,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.93.5"
version = "0.93.6"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4097,7 +4097,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.90.5"
version = "0.90.6"
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.40.8"
version = "0.40.9"
[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.10", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.124.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.2", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.2", path = "../swc_css_minifier" }
swc_css_minifier = { optional = true, version = "0.99.3", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.2", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.2", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.0", 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.137.2"
version = "0.137.3"
[package.metadata.docs.rs]
all-features = true
@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.2", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.2", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.2", path = "../swc_css_minifier", optional = true}
swc_css_minifier = {version = "0.99.3", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.2", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.2", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.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.99.2"
version = "0.99.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.93.5"
version = "0.93.6"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.4", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.5", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.90.6", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.4", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.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.90.5"
version = "0.90.6"
[lib]
bench = false
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.10", path = "../swc_common" }
swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.134.2", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.2", path = "../swc_css_minifier" }
swc_css_minifier = { version = "0.99.3", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.2", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.14", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.22", path = "../swc_ecma_codegen" }