chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-20 10:53:36 +00:00
parent 1840e748af
commit 0ae2866334
6 changed files with 16 additions and 13 deletions

View File

@ -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))
### Testing

8
Cargo.lock generated
View File

@ -3264,7 +3264,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.48.40"
version = "0.49.0"
dependencies = [
"anyhow",
"binding_macros",
@ -3317,7 +3317,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.144.31"
version = "0.145.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3374,7 +3374,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.16.18"
version = "0.17.0"
dependencies = [
"bitflags",
"once_cell",
@ -3428,7 +3428,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.17.18"
version = "0.18.0"
dependencies = [
"rustc-hash",
"serde",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.48.40"
version = "0.49.0"
[package.metadata.docs.rs]
features = [
"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_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_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_prefixer = { optional = true, version = "0.142.17", path = "../swc_css_prefixer" }
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" }
testing = { optional = true, version = "0.31.26", path = "../testing" }
# 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 }
[build-dependencies]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.144.31"
version = "0.145.0"
[package.metadata.docs.rs]
all-features = true
@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = {version = "0.131.4", path = "../swc_css_ast"}
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_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_prefixer = {version = "0.142.17", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.128.4", path = "../swc_css_utils/"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.16.18"
version = "0.17.0"
[lib]
bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_modules"
repository = "https://github.com/swc-project/swc.git"
version = "0.17.18"
version = "0.18.0"
[lib]
bench = false
@ -26,5 +26,5 @@ swc_css_visit = {version = "0.130.4", path = "../swc_css_visit"}
[dev-dependencies]
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"}