mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
chore: Publish crates
This commit is contained in:
parent
0f38e38984
commit
ba6d714fe7
@ -29,6 +29,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- **(css/minifier)** Handle zero in at-rules (#6155) ([0f38e38](https://github.com/swc-project/swc/commit/0f38e38984fe5508a1dd51275e81c21a0345f063))
|
||||||
|
|
||||||
|
|
||||||
- **(css/modules)** Add a lifetime to config parameter (#6144) ([1196d60](https://github.com/swc-project/swc/commit/1196d60182e6fcc7b9ba35150f9f5ea4f4ea0881))
|
- **(css/modules)** Add a lifetime to config parameter (#6144) ([1196d60](https://github.com/swc-project/swc/commit/1196d60182e6fcc7b9ba35150f9f5ea4f4ea0881))
|
||||||
|
|
||||||
|
|
||||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3168,7 +3168,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_core"
|
name = "swc_core"
|
||||||
version = "0.38.11"
|
version = "0.38.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"binding_macros",
|
"binding_macros",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@ -3217,7 +3217,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css"
|
name = "swc_css"
|
||||||
version = "0.135.3"
|
version = "0.135.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_css_ast",
|
"swc_css_ast",
|
||||||
"swc_css_codegen",
|
"swc_css_codegen",
|
||||||
@ -3310,7 +3310,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_minifier"
|
name = "swc_css_minifier"
|
||||||
version = "0.97.2"
|
version = "0.97.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"serde",
|
"serde",
|
||||||
@ -4045,7 +4045,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html"
|
name = "swc_html"
|
||||||
version = "0.88.9"
|
version = "0.88.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_html_ast",
|
"swc_html_ast",
|
||||||
"swc_html_codegen",
|
"swc_html_codegen",
|
||||||
@ -4097,7 +4097,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_minifier"
|
name = "swc_html_minifier"
|
||||||
version = "0.85.9"
|
version = "0.85.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_core"
|
name = "swc_core"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.38.11"
|
version = "0.38.12"
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = [
|
features = [
|
||||||
"common_perf",
|
"common_perf",
|
||||||
@ -325,7 +325,7 @@ swc_cached = { optional = true, version = "0.3.15", path =
|
|||||||
swc_common = { optional = true, version = "0.29.8", path = "../swc_common" }
|
swc_common = { optional = true, version = "0.29.8", path = "../swc_common" }
|
||||||
swc_css_ast = { optional = true, version = "0.122.1", path = "../swc_css_ast" }
|
swc_css_ast = { optional = true, version = "0.122.1", path = "../swc_css_ast" }
|
||||||
swc_css_codegen = { optional = true, version = "0.132.2", path = "../swc_css_codegen" }
|
swc_css_codegen = { optional = true, version = "0.132.2", path = "../swc_css_codegen" }
|
||||||
swc_css_minifier = { optional = true, version = "0.97.2", path = "../swc_css_minifier" }
|
swc_css_minifier = { optional = true, version = "0.97.3", path = "../swc_css_minifier" }
|
||||||
swc_css_parser = { optional = true, version = "0.131.2", path = "../swc_css_parser" }
|
swc_css_parser = { optional = true, version = "0.131.2", path = "../swc_css_parser" }
|
||||||
swc_css_prefixer = { optional = true, version = "0.133.2", path = "../swc_css_prefixer" }
|
swc_css_prefixer = { optional = true, version = "0.133.2", path = "../swc_css_prefixer" }
|
||||||
swc_css_utils = { optional = true, version = "0.119.1", path = "../swc_css_utils/" }
|
swc_css_utils = { optional = true, version = "0.119.1", path = "../swc_css_utils/" }
|
||||||
|
@ -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.135.3"
|
version = "0.135.4"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
|
|||||||
swc_css_ast = {version = "0.122.1", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.122.1", path = "../swc_css_ast"}
|
||||||
swc_css_codegen = {version = "0.132.2", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.132.2", path = "../swc_css_codegen"}
|
||||||
swc_css_compat = {version = "0.7.2", path = "../swc_css_compat", optional = true}
|
swc_css_compat = {version = "0.7.2", path = "../swc_css_compat", optional = true}
|
||||||
swc_css_minifier = {version = "0.97.2", path = "../swc_css_minifier", optional = true}
|
swc_css_minifier = {version = "0.97.3", path = "../swc_css_minifier", optional = true}
|
||||||
swc_css_modules = {version = "0.8.3", path = "../swc_css_modules", optional = true}
|
swc_css_modules = {version = "0.8.3", path = "../swc_css_modules", optional = true}
|
||||||
swc_css_parser = {version = "0.131.2", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.131.2", path = "../swc_css_parser"}
|
||||||
swc_css_prefixer = {version = "0.133.2", path = "../swc_css_prefixer", optional = true}
|
swc_css_prefixer = {version = "0.133.2", path = "../swc_css_prefixer", optional = true}
|
||||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
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.97.2"
|
version = "0.97.3"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html"
|
name = "swc_html"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.88.9"
|
version = "0.88.10"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"}
|
swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"}
|
||||||
swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"}
|
swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"}
|
||||||
swc_html_minifier = {version = "0.85.9", path = "../swc_html_minifier", optional = true}
|
swc_html_minifier = {version = "0.85.10", path = "../swc_html_minifier", optional = true}
|
||||||
swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"}
|
swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"}
|
||||||
swc_html_visit = {version = "0.26.10", path = "../swc_html_visit"}
|
swc_html_visit = {version = "0.26.10", path = "../swc_html_visit"}
|
||||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_minifier"
|
name = "swc_html_minifier"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.85.9"
|
version = "0.85.10"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
|
|||||||
swc_common = { version = "0.29.8", path = "../swc_common" }
|
swc_common = { version = "0.29.8", path = "../swc_common" }
|
||||||
swc_css_ast = { version = "0.122.1", path = "../swc_css_ast" }
|
swc_css_ast = { version = "0.122.1", path = "../swc_css_ast" }
|
||||||
swc_css_codegen = { version = "0.132.2", path = "../swc_css_codegen" }
|
swc_css_codegen = { version = "0.132.2", path = "../swc_css_codegen" }
|
||||||
swc_css_minifier = { version = "0.97.2", path = "../swc_css_minifier" }
|
swc_css_minifier = { version = "0.97.3", path = "../swc_css_minifier" }
|
||||||
swc_css_parser = { version = "0.131.2", path = "../swc_css_parser" }
|
swc_css_parser = { version = "0.131.2", path = "../swc_css_parser" }
|
||||||
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
|
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
|
||||||
swc_ecma_codegen = { version = "0.127.15", path = "../swc_ecma_codegen" }
|
swc_ecma_codegen = { version = "0.127.15", path = "../swc_ecma_codegen" }
|
||||||
|
Loading…
Reference in New Issue
Block a user