chore: Publish crates

This commit is contained in:
SWC Bot 2022-03-23 15:01:11 +00:00
parent 93866d0be5
commit 35dcd62a3a
3 changed files with 12 additions and 9 deletions

View File

@ -14,6 +14,9 @@
- **(cli)** Implements some compile flags (#4125) ([a6f39d3](https://github.com/swc-project/swc/commit/a6f39d3bd6e7bc57203e1cf4f2cadc12e4396e9f))
- **(css/minifier)** Compress more properties (#4130) ([93866d0](https://github.com/swc-project/swc/commit/93866d0be5cf08a1c0a78c3a8c6b907a31525926))
- **(es/typescript)** Support optional variance annotations (#4008) ([bf1924d](https://github.com/swc-project/swc/commit/bf1924d1a8cc2039b624eecd9730d012c1e47321))

2
Cargo.lock generated
View File

@ -3195,7 +3195,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.65.0"
version = "0.65.1"
dependencies = [
"swc_atoms",
"swc_common",

View File

@ -7,17 +7,17 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.0"
version = "0.65.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.91.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.90.0", path = "../swc_css_visit"}
swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
swc_common = { version = "0.17.0", path = "../swc_common" }
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = {version = "0.100.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.99.0", path = "../swc_css_parser"}
testing = {version = "0.19.0", path = "../testing"}
swc_css_codegen = { version = "0.100.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
testing = { version = "0.19.0", path = "../testing" }