mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
chore: Publish crates
This commit is contained in:
parent
b3bbd742bf
commit
13fe17040c
@ -29,6 +29,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- **(css/compat)** Add `Compiler` (#6626) ([b3bbd74](https://github.com/swc-project/swc/commit/b3bbd742bf5a3bc51105e16cf6260b63ef9b124a))
|
||||||
|
|
||||||
|
|
||||||
- **(css/minifier)** Support `to` and `from` with `initial` (#6613) ([cb49fa6](https://github.com/swc-project/swc/commit/cb49fa6f1ddf2ae37262769c538ef1a51adc404c))
|
- **(css/minifier)** Support `to` and `from` with `initial` (#6613) ([cb49fa6](https://github.com/swc-project/swc/commit/cb49fa6f1ddf2ae37262769c538ef1a51adc404c))
|
||||||
|
|
||||||
|
|
||||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3260,7 +3260,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_core"
|
name = "swc_core"
|
||||||
version = "0.48.2"
|
version = "0.48.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"binding_macros",
|
"binding_macros",
|
||||||
@ -3313,7 +3313,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css"
|
name = "swc_css"
|
||||||
version = "0.144.2"
|
version = "0.144.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_css_ast",
|
"swc_css_ast",
|
||||||
"swc_css_codegen",
|
"swc_css_codegen",
|
||||||
@ -3370,7 +3370,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_compat"
|
name = "swc_css_compat"
|
||||||
version = "0.16.0"
|
version = "0.16.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@ -3424,7 +3424,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_modules"
|
name = "swc_css_modules"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -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.48.2"
|
version = "0.48.3"
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = [
|
features = [
|
||||||
"common_perf",
|
"common_perf",
|
||||||
@ -349,7 +349,7 @@ swc_common = { optional = true, version = "0.29.20", path
|
|||||||
swc_css_ast = { optional = true, version = "0.131.0", path = "../swc_css_ast" }
|
swc_css_ast = { optional = true, version = "0.131.0", path = "../swc_css_ast" }
|
||||||
swc_css_codegen = { optional = true, version = "0.141.0", path = "../swc_css_codegen" }
|
swc_css_codegen = { optional = true, version = "0.141.0", path = "../swc_css_codegen" }
|
||||||
swc_css_minifier = { optional = true, version = "0.106.2", path = "../swc_css_minifier" }
|
swc_css_minifier = { optional = true, version = "0.106.2", path = "../swc_css_minifier" }
|
||||||
swc_css_modules = { optional = true, version = "0.17.0", path = "../swc_css_modules" }
|
swc_css_modules = { optional = true, version = "0.17.1", path = "../swc_css_modules" }
|
||||||
swc_css_parser = { optional = true, version = "0.140.0", path = "../swc_css_parser" }
|
swc_css_parser = { optional = true, version = "0.140.0", path = "../swc_css_parser" }
|
||||||
swc_css_prefixer = { optional = true, version = "0.142.0", path = "../swc_css_prefixer" }
|
swc_css_prefixer = { optional = true, version = "0.142.0", path = "../swc_css_prefixer" }
|
||||||
swc_css_utils = { optional = true, version = "0.128.0", path = "../swc_css_utils/" }
|
swc_css_utils = { optional = true, version = "0.128.0", path = "../swc_css_utils/" }
|
||||||
@ -381,7 +381,7 @@ swc_plugin_proxy = { optional = true, version = "0.23.4", path =
|
|||||||
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
|
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
|
||||||
testing = { optional = true, version = "0.31.21", path = "../testing" }
|
testing = { optional = true, version = "0.31.21", path = "../testing" }
|
||||||
# TODO: eventually swc_plugin_runner needs to remove default features
|
# TODO: eventually swc_plugin_runner needs to remove default features
|
||||||
swc_css_compat = { version = "0.16.0", path = "../swc_css_compat", optional = true }
|
swc_css_compat = { version = "0.16.1", path = "../swc_css_compat", optional = true }
|
||||||
swc_plugin_runner = { optional = true, version = "0.81.0", path = "../swc_plugin_runner", default-features = false }
|
swc_plugin_runner = { optional = true, version = "0.81.0", path = "../swc_plugin_runner", default-features = false }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
@ -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.144.2"
|
version = "0.144.3"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
swc_css_ast = {version = "0.131.0", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.131.0", path = "../swc_css_ast"}
|
||||||
swc_css_codegen = {version = "0.141.0", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.141.0", path = "../swc_css_codegen"}
|
||||||
swc_css_compat = {version = "0.16.0", path = "../swc_css_compat", optional = true}
|
swc_css_compat = {version = "0.16.1", path = "../swc_css_compat", optional = true}
|
||||||
swc_css_minifier = {version = "0.106.2", path = "../swc_css_minifier", optional = true}
|
swc_css_minifier = {version = "0.106.2", path = "../swc_css_minifier", optional = true}
|
||||||
swc_css_modules = {version = "0.17.0", path = "../swc_css_modules", optional = true}
|
swc_css_modules = {version = "0.17.1", path = "../swc_css_modules", optional = true}
|
||||||
swc_css_parser = {version = "0.140.0", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.140.0", path = "../swc_css_parser"}
|
||||||
swc_css_prefixer = {version = "0.142.0", path = "../swc_css_prefixer", optional = true}
|
swc_css_prefixer = {version = "0.142.0", path = "../swc_css_prefixer", optional = true}
|
||||||
swc_css_utils = {version = "0.128.0", path = "../swc_css_utils/"}
|
swc_css_utils = {version = "0.128.0", path = "../swc_css_utils/"}
|
||||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_compat"
|
name = "swc_css_compat"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.16.0"
|
version = "0.16.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_modules"
|
name = "swc_css_modules"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -26,5 +26,5 @@ swc_css_visit = {version = "0.130.0", path = "../swc_css_visit"}
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
swc_css_compat = {version = "0.16.0", path = "../swc_css_compat"}
|
swc_css_compat = {version = "0.16.1", path = "../swc_css_compat"}
|
||||||
testing = {version = "0.31.21", path = "../testing"}
|
testing = {version = "0.31.21", path = "../testing"}
|
||||||
|
Loading…
Reference in New Issue
Block a user