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
e6c78d0b1d
commit
8577caf535
@ -13,6 +13,9 @@
|
||||
|
||||
- **(html/codegen)** Improve API (#5031) ([8bf924a](https://github.com/swc-project/swc/commit/8bf924ae5f7305d1db65cf5a9b09f76cb7903e2b))
|
||||
|
||||
|
||||
- **(html/minifier)** Add `remove_comments` option (#5037) ([e6c78d0](https://github.com/swc-project/swc/commit/e6c78d0b1d863c61882c941f62fccd04a501530b))
|
||||
|
||||
## [1.2.205] - 2022-06-24
|
||||
|
||||
### Bug Fixes
|
||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -3911,7 +3911,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -3960,7 +3960,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"serde",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.15.0", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.16.0", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_minifier = {version = "0.17.0", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.13.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.10.0", path = "../swc_html_visit"}
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user