chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-08 01:39:44 +00:00
parent 1b200a0582
commit bc39c9b9f2
6 changed files with 18 additions and 15 deletions

View File

@ -26,7 +26,10 @@
- **(ci)** Cleanup CI config (#5769) ([1e8a58d](https://github.com/swc-project/swc/commit/1e8a58da4d6d3ca2bfc6843eb4412245d1154682)) - **(ci)** Cleanup CI config (#5769) ([1e8a58d](https://github.com/swc-project/swc/commit/1e8a58da4d6d3ca2bfc6843eb4412245d1154682))
- **(es/minifier)** Fix size calculator script (#5767) ([9d29abc](https://github.com/swc-project/swc/commit/9d29abcd5b9ab08fb3eed4d685806a6b0dac9d95))- **general**: Typo (#5758) ([15e2357](https://github.com/swc-project/swc/commit/15e2357d1d7086f3a48def71c38acb7052f8d742)) - **(es/minifier)** Fix size calculator script (#5767) ([9d29abc](https://github.com/swc-project/swc/commit/9d29abcd5b9ab08fb3eed4d685806a6b0dac9d95))
- **(html/parser)** Typo (#5778) ([1b200a0](https://github.com/swc-project/swc/commit/1b200a0582f77aaca9abcbd4d693be13e172b9ec))- **general**: Typo (#5758) ([15e2357](https://github.com/swc-project/swc/commit/15e2357d1d7086f3a48def71c38acb7052f8d742))
### Performance ### Performance

8
Cargo.lock generated
View File

@ -3944,7 +3944,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.70.8" version = "0.70.9"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -3968,7 +3968,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_codegen" name = "swc_html_codegen"
version = "0.32.6" version = "0.32.7"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -3996,7 +3996,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.67.8" version = "0.67.9"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"serde", "serde",
@ -4024,7 +4024,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_parser" name = "swc_html_parser"
version = "0.29.5" version = "0.29.6"
dependencies = [ dependencies = [
"criterion", "criterion",
"serde", "serde",

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.70.8" version = "0.70.9"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.24.8", path = "../swc_html_ast"} swc_html_ast = {version = "0.24.8", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.32.6", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.32.7", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.67.8", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.67.9", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.29.5", path = "../swc_html_parser"} swc_html_parser = {version = "0.29.6", path = "../swc_html_parser"}
swc_html_visit = {version = "0.24.5", path = "../swc_html_visit"} swc_html_visit = {version = "0.24.5", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_codegen" name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.32.6" version = "0.32.7"
[lib] [lib]
bench = false bench = false
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.12.6", path = "../swc_html_utils" }
swc_common = { version = "0.27.14", path = "../swc_common", features = [ swc_common = { version = "0.27.14", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_html_parser = { version = "0.29.5", path = "../swc_html_parser" } swc_html_parser = { version = "0.29.6", path = "../swc_html_parser" }
swc_html_visit = { version = "0.24.5", path = "../swc_html_visit" } swc_html_visit = { version = "0.24.5", path = "../swc_html_visit" }
testing = { version = "0.29.5", path = "../testing" } testing = { version = "0.29.5", path = "../testing" }

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.67.8" version = "0.67.9"
[lib] [lib]
bench = false bench = false
@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.118.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.106.6", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.106.6", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.76.8", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.76.8", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.24.8", path = "../swc_html_ast" } swc_html_ast = { version = "0.24.8", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.32.6", path = "../swc_html_codegen" } swc_html_codegen = { version = "0.32.7", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.29.5", path = "../swc_html_parser" } swc_html_parser = { version = "0.29.6", path = "../swc_html_parser" }
swc_html_utils = { version = "0.12.6", path = "../swc_html_utils" } swc_html_utils = { version = "0.12.6", path = "../swc_html_utils" }
swc_html_visit = { version = "0.24.5", path = "../swc_html_visit" } swc_html_visit = { version = "0.24.5", path = "../swc_html_visit" }

View File

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