chore: Publish crates

This commit is contained in:
SWC Bot 2022-11-02 03:39:31 +00:00
parent 3a9065799d
commit 75599d5821
6 changed files with 20 additions and 14 deletions

View File

@ -70,6 +70,12 @@
- **(common)** Switch to `new_debug_unreachable` (#6265) ([2f61332](https://github.com/swc-project/swc/commit/2f613321779cfa7a3ccb9d3fd6c7789459723f0f))
### Performance
- **(html/parser)** Refactor (#6313) ([3a90657](https://github.com/swc-project/swc/commit/3a9065799dca18e3876ef0e0c456da68c648a6e8))
### Refactor

8
Cargo.lock generated
View File

@ -4040,7 +4040,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.93.36"
version = "0.93.37"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4064,7 +4064,7 @@ dependencies = [
[[package]]
name = "swc_html_codegen"
version = "0.37.9"
version = "0.37.10"
dependencies = [
"auto_impl",
"bitflags",
@ -4092,7 +4092,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.90.36"
version = "0.90.37"
dependencies = [
"criterion",
"once_cell",
@ -4122,7 +4122,7 @@ dependencies = [
[[package]]
name = "swc_html_parser"
version = "0.34.9"
version = "0.34.10"
dependencies = [
"criterion",
"serde",

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.36"
version = "0.93.37"
[package.metadata.docs.rs]
all-features = true
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.4", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.9", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.36", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.9", path = "../swc_html_parser"}
swc_html_codegen = {version = "0.37.10", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.37", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.10", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.4", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.37.9"
version = "0.37.10"
[lib]
bench = false
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.14", path = "../swc_html_utils" }
swc_common = { version = "0.29.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_html_parser = { version = "0.34.9", path = "../swc_html_parser" }
swc_html_parser = { version = "0.34.10", path = "../swc_html_parser" }
swc_html_visit = { version = "0.28.4", path = "../swc_html_visit" }
testing = { version = "0.31.13", path = "../testing" }

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.36"
version = "0.90.37"
[lib]
bench = false
@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.122.23", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.111.38", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.80.17", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.28.4", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.37.9", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.9", path = "../swc_html_parser" }
swc_html_codegen = { version = "0.37.10", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.10", path = "../swc_html_parser" }
swc_html_utils = { version = "0.14.14", path = "../swc_html_utils" }
swc_html_visit = { version = "0.28.4", path = "../swc_html_visit" }

View File

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