mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
chore: Publish crates
This commit is contained in:
parent
0ca036a962
commit
0903899977
@ -47,6 +47,9 @@
|
||||
- **(css/codegen)** Implement minification of identifiers (#3466) ([81850c2](https://github.com/swc-project/swc/commit/81850c2b30693061428569c9a6ebd4a3f07d7683))
|
||||
|
||||
|
||||
- **(css/codegen)** Improve minification for page rules (#3467) ([0ca036a](https://github.com/swc-project/swc/commit/0ca036a962042727e362b91748aa10547c87fc63))
|
||||
|
||||
|
||||
- **(css/lexer)** Implement error recovery for functions (#3445) ([f1410fc](https://github.com/swc-project/swc/commit/f1410fc09b4838fa8113c9b2041f58d7d752c519))
|
||||
|
||||
|
||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -2752,7 +2752,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css"
|
||||
version = "0.69.1"
|
||||
version = "0.69.2"
|
||||
dependencies = [
|
||||
"swc_css_ast",
|
||||
"swc_css_codegen",
|
||||
@ -2775,7 +2775,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_codegen"
|
||||
version = "0.67.1"
|
||||
version = "0.67.2"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.69.1"
|
||||
version = "0.69.2"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -17,7 +17,7 @@ minifier = ["swc_css_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_css_ast = {version = "0.64.0", path = "../swc_css_ast"}
|
||||
swc_css_codegen = {version = "0.67.1", path = "../swc_css_codegen"}
|
||||
swc_css_codegen = {version = "0.67.2", path = "../swc_css_codegen"}
|
||||
swc_css_minifier = {version = "0.31.0", path = "../swc_css_minifier", optional = true}
|
||||
swc_css_parser = {version = "0.68.0", path = "../swc_css_parser"}
|
||||
swc_css_utils = {version = "0.61.0", path = "../swc_css_utils/"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.67.1"
|
||||
version = "0.67.2"
|
||||
|
||||
[dependencies]
|
||||
auto_impl = "0.5.0"
|
||||
|
Loading…
Reference in New Issue
Block a user