mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
chore: Publish crates
This commit is contained in:
parent
c84bf133a6
commit
4c4dc6f096
@ -20,6 +20,9 @@
|
|||||||
- **(cli)** Setup subcommands for the features (#3858) ([367a57d](https://github.com/swc-project/swc/commit/367a57df6d66bc11dd750c6b7c30bf3a114e00fa))
|
- **(cli)** Setup subcommands for the features (#3858) ([367a57d](https://github.com/swc-project/swc/commit/367a57df6d66bc11dd750c6b7c30bf3a114e00fa))
|
||||||
|
|
||||||
|
|
||||||
|
- **(css)** Improve error recovery (#3853) ([c84bf13](https://github.com/swc-project/swc/commit/c84bf133a6ffce311548170cb9c4b0edb9804478))
|
||||||
|
|
||||||
|
|
||||||
- **(css/minifier)** Compress `@import` at-rule (#3850) ([ccfb4bf](https://github.com/swc-project/swc/commit/ccfb4bfc0b10375d96620f2748b0a3d022c4e359))
|
- **(css/minifier)** Compress `@import` at-rule (#3850) ([ccfb4bf](https://github.com/swc-project/swc/commit/ccfb4bfc0b10375d96620f2748b0a3d022c4e359))
|
||||||
|
|
||||||
|
|
||||||
|
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -2866,7 +2866,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css"
|
name = "swc_css"
|
||||||
version = "0.97.0"
|
version = "0.98.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_css_ast",
|
"swc_css_ast",
|
||||||
"swc_css_codegen",
|
"swc_css_codegen",
|
||||||
@ -2878,7 +2878,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_ast"
|
name = "swc_css_ast"
|
||||||
version = "0.88.0"
|
version = "0.89.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"is-macro",
|
"is-macro",
|
||||||
"serde",
|
"serde",
|
||||||
@ -2889,7 +2889,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_codegen"
|
name = "swc_css_codegen"
|
||||||
version = "0.94.0"
|
version = "0.95.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"auto_impl",
|
"auto_impl",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -2915,7 +2915,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_lints"
|
name = "swc_css_lints"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"auto_impl",
|
"auto_impl",
|
||||||
@ -2933,7 +2933,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_minifier"
|
name = "swc_css_minifier"
|
||||||
version = "0.59.2"
|
version = "0.60.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
"swc_common",
|
"swc_common",
|
||||||
@ -2946,7 +2946,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_parser"
|
name = "swc_css_parser"
|
||||||
version = "0.95.0"
|
version = "0.96.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"lexical",
|
"lexical",
|
||||||
@ -2961,7 +2961,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_utils"
|
name = "swc_css_utils"
|
||||||
version = "0.85.0"
|
version = "0.86.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
"swc_common",
|
"swc_common",
|
||||||
@ -2971,7 +2971,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_visit"
|
name = "swc_css_visit"
|
||||||
version = "0.87.0"
|
version = "0.88.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
"swc_common",
|
"swc_common",
|
||||||
@ -3662,7 +3662,7 @@ version = "0.24.1"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_stylis"
|
name = "swc_stylis"
|
||||||
version = "0.93.0"
|
version = "0.94.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
"swc_common",
|
"swc_common",
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css"
|
name = "swc_css"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.97.0"
|
version = "0.98.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
|
|||||||
minifier = ["swc_css_minifier"]
|
minifier = ["swc_css_minifier"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_codegen = {version = "0.94.0", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.95.0", path = "../swc_css_codegen"}
|
||||||
swc_css_minifier = {version = "0.59.0", path = "../swc_css_minifier", optional = true}
|
swc_css_minifier = {version = "0.60.0", path = "../swc_css_minifier", optional = true}
|
||||||
swc_css_parser = {version = "0.95.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.96.0", path = "../swc_css_parser"}
|
||||||
swc_css_utils = {version = "0.85.0", path = "../swc_css_utils/"}
|
swc_css_utils = {version = "0.86.0", path = "../swc_css_utils/"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_ast"
|
name = "swc_css_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.88.0"
|
version = "0.89.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# 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"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_codegen"
|
name = "swc_css_codegen"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.94.0"
|
version = "0.95.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
auto_impl = "0.5.0"
|
auto_impl = "0.5.0"
|
||||||
bitflags = "1.3.2"
|
bitflags = "1.3.2"
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
|
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
swc_css_parser = {version = "0.95.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.96.0", path = "../swc_css_parser"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
testing = {version = "0.18.0", path = "../testing"}
|
testing = {version = "0.18.0", path = "../testing"}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_lints"
|
name = "swc_css_lints"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@ -18,10 +18,10 @@ rayon = "1.5.1"
|
|||||||
serde = {version = "1.0.133", features = ["derive"]}
|
serde = {version = "1.0.133", features = ["derive"]}
|
||||||
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1.0.79"
|
serde_json = "1.0.79"
|
||||||
swc_css_parser = {version = "0.95.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.96.0", path = "../swc_css_parser"}
|
||||||
testing = {version = "0.18.0", path = "../testing"}
|
testing = {version = "0.18.0", path = "../testing"}
|
||||||
|
@ -6,17 +6,17 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_minifier"
|
name = "swc_css_minifier"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.59.2"
|
version = "0.60.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
swc_css_codegen = {version = "0.94.0", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.95.0", path = "../swc_css_codegen"}
|
||||||
swc_css_parser = {version = "0.95.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.96.0", path = "../swc_css_parser"}
|
||||||
testing = {version = "0.18.0", path = "../testing"}
|
testing = {version = "0.18.0", path = "../testing"}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_parser"
|
name = "swc_css_parser"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.95.0"
|
version = "0.96.0"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
@ -17,10 +17,10 @@ bitflags = "1.2.1"
|
|||||||
lexical = "5.2.2"
|
lexical = "5.2.2"
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde = "1.0.127"
|
serde = "1.0.127"
|
||||||
serde_json = "1.0.66"
|
serde_json = "1.0.66"
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
testing = {version = "0.18.0", path = "../testing"}
|
testing = {version = "0.18.0", path = "../testing"}
|
||||||
|
@ -6,11 +6,11 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_utils"
|
name = "swc_css_utils"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.85.0"
|
version = "0.86.0"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
|
@ -6,12 +6,12 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_visit"
|
name = "swc_css_visit"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.87.0"
|
version = "0.88.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||||
|
@ -6,18 +6,18 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_stylis"
|
name = "swc_stylis"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.93.0"
|
version = "0.94.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common"}
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
||||||
swc_css_ast = {version = "0.88.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.89.0", path = "../swc_css_ast"}
|
||||||
swc_css_utils = {version = "0.85.0", path = "../swc_css_utils/"}
|
swc_css_utils = {version = "0.86.0", path = "../swc_css_utils/"}
|
||||||
swc_css_visit = {version = "0.87.0", path = "../swc_css_visit"}
|
swc_css_visit = {version = "0.88.0", path = "../swc_css_visit"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
swc_css_codegen = {version = "0.94.0", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.95.0", path = "../swc_css_codegen"}
|
||||||
swc_css_parser = {version = "0.95.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.96.0", path = "../swc_css_parser"}
|
||||||
testing = {version = "0.18.0", path = "../testing"}
|
testing = {version = "0.18.0", path = "../testing"}
|
||||||
|
Loading…
Reference in New Issue
Block a user