mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
chore: Publish crates
This commit is contained in:
parent
1b200a0582
commit
bc39c9b9f2
@ -26,7 +26,10 @@
|
||||
- **(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
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3944,7 +3944,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.70.8"
|
||||
version = "0.70.9"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -3968,7 +3968,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_codegen"
|
||||
version = "0.32.6"
|
||||
version = "0.32.7"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -3996,7 +3996,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.67.8"
|
||||
version = "0.67.9"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"serde",
|
||||
@ -4024,7 +4024,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_parser"
|
||||
version = "0.29.5"
|
||||
version = "0.29.6"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"serde",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.70.8"
|
||||
version = "0.70.9"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.24.8", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.32.6", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.67.8", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.29.5", path = "../swc_html_parser"}
|
||||
swc_html_codegen = {version = "0.32.7", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.67.9", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.29.6", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.24.5", path = "../swc_html_visit"}
|
||||
|
@ -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.32.6"
|
||||
version = "0.32.7"
|
||||
|
||||
[lib]
|
||||
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 = [
|
||||
"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" }
|
||||
testing = { version = "0.29.5", path = "../testing" }
|
||||
|
@ -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.67.8"
|
||||
version = "0.67.9"
|
||||
|
||||
[lib]
|
||||
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_visit = { version = "0.76.8", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "0.24.8", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "0.32.6", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.29.5", path = "../swc_html_parser" }
|
||||
swc_html_codegen = { version = "0.32.7", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.29.6", path = "../swc_html_parser" }
|
||||
swc_html_utils = { version = "0.12.6", path = "../swc_html_utils" }
|
||||
swc_html_visit = { version = "0.24.5", path = "../swc_html_visit" }
|
||||
|
||||
|
@ -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.29.5"
|
||||
version = "0.29.6"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user