mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 14:16:12 +03:00
chore: Publish crates
This commit is contained in:
parent
460f846934
commit
8dbc949cfe
@ -19,6 +19,15 @@
|
||||
|
||||
- **(swc/plugin)** Implement proxy for `Mark::fresh` (#3492) ([494b4c8](https://github.com/swc-project/swc/commit/494b4c8203514dd9f21b2bc3804ba8c44d46a4a1))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
||||
- **(common)** Cleanup & rustfmt (#3495) ([9b76783](https://github.com/swc-project/swc/commit/9b76783281af7c6b92e8185b44ebefae41648d3f))
|
||||
|
||||
|
||||
- **(css/ast)** Rename types to match specification (#3484) ([460f846](https://github.com/swc-project/swc/commit/460f84693414c58d4aa116f9d4e630b1e32bffa4))
|
||||
|
||||
### Testing
|
||||
|
||||
|
||||
|
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -2752,7 +2752,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css"
|
||||
version = "0.73.1"
|
||||
version = "0.74.0"
|
||||
dependencies = [
|
||||
"swc_css_ast",
|
||||
"swc_css_codegen",
|
||||
@ -2764,7 +2764,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_ast"
|
||||
version = "0.68.0"
|
||||
version = "0.69.0"
|
||||
dependencies = [
|
||||
"is-macro",
|
||||
"serde",
|
||||
@ -2775,7 +2775,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_codegen"
|
||||
version = "0.71.0"
|
||||
version = "0.72.0"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -2801,7 +2801,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_minifier"
|
||||
version = "0.35.0"
|
||||
version = "0.36.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -2814,7 +2814,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_parser"
|
||||
version = "0.72.1"
|
||||
version = "0.73.0"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"lexical",
|
||||
@ -2829,7 +2829,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_utils"
|
||||
version = "0.65.0"
|
||||
version = "0.66.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -2839,7 +2839,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_visit"
|
||||
version = "0.67.0"
|
||||
version = "0.68.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -3495,7 +3495,7 @@ version = "0.24.0"
|
||||
|
||||
[[package]]
|
||||
name = "swc_stylis"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.73.1"
|
||||
version = "0.74.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||
minifier = ["swc_css_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_codegen = {version = "0.71.0", path = "../swc_css_codegen"}
|
||||
swc_css_minifier = {version = "0.35.0", path = "../swc_css_minifier", optional = true}
|
||||
swc_css_parser = {version = "0.72.1", path = "../swc_css_parser"}
|
||||
swc_css_utils = {version = "0.65.0", path = "../swc_css_utils/"}
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_css_codegen = {version = "0.72.0", path = "../swc_css_codegen"}
|
||||
swc_css_minifier = {version = "0.36.0", path = "../swc_css_minifier", optional = true}
|
||||
swc_css_parser = {version = "0.73.0", path = "../swc_css_parser"}
|
||||
swc_css_utils = {version = "0.66.0", path = "../swc_css_utils/"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.68.0"
|
||||
version = "0.69.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
@ -6,17 +6,17 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.71.0"
|
||||
version = "0.72.0"
|
||||
|
||||
[dependencies]
|
||||
auto_impl = "0.5.0"
|
||||
bitflags = "1.3.2"
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_css_parser = {version = "0.72.0", path = "../swc_css_parser"}
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_parser = {version = "0.73.0", path = "../swc_css_parser"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
testing = {version = "0.18.0", path = "../testing"}
|
||||
|
@ -6,17 +6,17 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.35.0"
|
||||
version = "0.36.0"
|
||||
|
||||
# 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.68.0", path = "../swc_css_ast"}
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_css_codegen = {version = "0.71.0", path = "../swc_css_codegen"}
|
||||
swc_css_parser = {version = "0.72.0", path = "../swc_css_parser"}
|
||||
swc_css_codegen = {version = "0.72.0", path = "../swc_css_codegen"}
|
||||
swc_css_parser = {version = "0.73.0", path = "../swc_css_parser"}
|
||||
testing = {version = "0.18.0", path = "../testing"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.72.1"
|
||||
version = "0.73.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[features]
|
||||
@ -17,10 +17,10 @@ bitflags = "1.2.1"
|
||||
lexical = "5.2.2"
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
|
||||
[dev-dependencies]
|
||||
serde = "1.0.127"
|
||||
serde_json = "1.0.66"
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
testing = {version = "0.18.0", path = "../testing"}
|
||||
|
@ -6,11 +6,11 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_utils"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.65.0"
|
||||
version = "0.66.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
|
@ -6,12 +6,12 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_visit"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.67.0"
|
||||
version = "0.68.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -6,18 +6,18 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_stylis"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||
swc_css_ast = {version = "0.68.0", path = "../swc_css_ast"}
|
||||
swc_css_utils = {version = "0.65.0", path = "../swc_css_utils/"}
|
||||
swc_css_visit = {version = "0.67.0", path = "../swc_css_visit"}
|
||||
swc_css_ast = {version = "0.69.0", path = "../swc_css_ast"}
|
||||
swc_css_utils = {version = "0.66.0", path = "../swc_css_utils/"}
|
||||
swc_css_visit = {version = "0.68.0", path = "../swc_css_visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_css_codegen = {version = "0.71.0", path = "../swc_css_codegen"}
|
||||
swc_css_parser = {version = "0.72.0", path = "../swc_css_parser"}
|
||||
swc_css_codegen = {version = "0.72.0", path = "../swc_css_codegen"}
|
||||
swc_css_parser = {version = "0.73.0", path = "../swc_css_parser"}
|
||||
testing = {version = "0.18.0", path = "../testing"}
|
||||
|
Loading…
Reference in New Issue
Block a user