mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
chore: Publish crates
This commit is contained in:
parent
1840e748af
commit
0ae2866334
@ -83,6 +83,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- **(css/compat)** Merge nesting into the compiler (#6686) ([1840e74](https://github.com/swc-project/swc/commit/1840e748af8334d244a1455a25325625b06fff93))
|
||||||
|
|
||||||
|
|
||||||
- **(css/prefixer)** Use `eq_ignore_span` (#6656) ([d4660a4](https://github.com/swc-project/swc/commit/d4660a4673e19d628b7720e1352fa905bdc4456a))
|
- **(css/prefixer)** Use `eq_ignore_span` (#6656) ([d4660a4](https://github.com/swc-project/swc/commit/d4660a4673e19d628b7720e1352fa905bdc4456a))
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3264,7 +3264,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_core"
|
name = "swc_core"
|
||||||
version = "0.48.40"
|
version = "0.49.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"binding_macros",
|
"binding_macros",
|
||||||
@ -3317,7 +3317,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css"
|
name = "swc_css"
|
||||||
version = "0.144.31"
|
version = "0.145.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_css_ast",
|
"swc_css_ast",
|
||||||
"swc_css_codegen",
|
"swc_css_codegen",
|
||||||
@ -3374,7 +3374,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_compat"
|
name = "swc_css_compat"
|
||||||
version = "0.16.18"
|
version = "0.17.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@ -3428,7 +3428,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_modules"
|
name = "swc_css_modules"
|
||||||
version = "0.17.18"
|
version = "0.18.0"
|
||||||
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.40"
|
version = "0.49.0"
|
||||||
[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.24", path
|
|||||||
swc_css_ast = { optional = true, version = "0.131.4", path = "../swc_css_ast" }
|
swc_css_ast = { optional = true, version = "0.131.4", path = "../swc_css_ast" }
|
||||||
swc_css_codegen = { optional = true, version = "0.141.12", path = "../swc_css_codegen" }
|
swc_css_codegen = { optional = true, version = "0.141.12", path = "../swc_css_codegen" }
|
||||||
swc_css_minifier = { optional = true, version = "0.106.20", path = "../swc_css_minifier" }
|
swc_css_minifier = { optional = true, version = "0.106.20", path = "../swc_css_minifier" }
|
||||||
swc_css_modules = { optional = true, version = "0.17.18", path = "../swc_css_modules" }
|
swc_css_modules = { optional = true, version = "0.18.0", path = "../swc_css_modules" }
|
||||||
swc_css_parser = { optional = true, version = "0.140.12", path = "../swc_css_parser" }
|
swc_css_parser = { optional = true, version = "0.140.12", path = "../swc_css_parser" }
|
||||||
swc_css_prefixer = { optional = true, version = "0.142.17", path = "../swc_css_prefixer" }
|
swc_css_prefixer = { optional = true, version = "0.142.17", path = "../swc_css_prefixer" }
|
||||||
swc_css_utils = { optional = true, version = "0.128.4", path = "../swc_css_utils/" }
|
swc_css_utils = { optional = true, version = "0.128.4", path = "../swc_css_utils/" }
|
||||||
@ -381,7 +381,7 @@ swc_plugin_proxy = { optional = true, version = "0.23.8", 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.26", path = "../testing" }
|
testing = { optional = true, version = "0.31.26", 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.18", path = "../swc_css_compat", optional = true }
|
swc_css_compat = { version = "0.17.0", path = "../swc_css_compat", optional = true }
|
||||||
swc_plugin_runner = { optional = true, version = "0.81.12", path = "../swc_plugin_runner", default-features = false }
|
swc_plugin_runner = { optional = true, version = "0.81.12", 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.31"
|
version = "0.145.0"
|
||||||
|
|
||||||
[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.4", path = "../swc_css_ast"}
|
swc_css_ast = {version = "0.131.4", path = "../swc_css_ast"}
|
||||||
swc_css_codegen = {version = "0.141.12", path = "../swc_css_codegen"}
|
swc_css_codegen = {version = "0.141.12", path = "../swc_css_codegen"}
|
||||||
swc_css_compat = {version = "0.16.18", path = "../swc_css_compat", optional = true}
|
swc_css_compat = {version = "0.17.0", path = "../swc_css_compat", optional = true}
|
||||||
swc_css_minifier = {version = "0.106.20", path = "../swc_css_minifier", optional = true}
|
swc_css_minifier = {version = "0.106.20", path = "../swc_css_minifier", optional = true}
|
||||||
swc_css_modules = {version = "0.17.18", path = "../swc_css_modules", optional = true}
|
swc_css_modules = {version = "0.18.0", path = "../swc_css_modules", optional = true}
|
||||||
swc_css_parser = {version = "0.140.12", path = "../swc_css_parser"}
|
swc_css_parser = {version = "0.140.12", path = "../swc_css_parser"}
|
||||||
swc_css_prefixer = {version = "0.142.17", path = "../swc_css_prefixer", optional = true}
|
swc_css_prefixer = {version = "0.142.17", path = "../swc_css_prefixer", optional = true}
|
||||||
swc_css_utils = {version = "0.128.4", path = "../swc_css_utils/"}
|
swc_css_utils = {version = "0.128.4", 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.18"
|
version = "0.17.0"
|
||||||
|
|
||||||
[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.18"
|
version = "0.18.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -26,5 +26,5 @@ swc_css_visit = {version = "0.130.4", path = "../swc_css_visit"}
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
swc_css_compat = {version = "0.16.18", path = "../swc_css_compat"}
|
swc_css_compat = {version = "0.17.0", path = "../swc_css_compat"}
|
||||||
testing = {version = "0.31.26", path = "../testing"}
|
testing = {version = "0.31.26", path = "../testing"}
|
||||||
|
Loading…
Reference in New Issue
Block a user