chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-20 08:25:03 +00:00
parent b23cf50f4f
commit 6109a4c188
6 changed files with 16 additions and 13 deletions

View File

@ -29,6 +29,9 @@
- **(css/compat)** Support `not` with multiple arguments (#6668) ([352896f](https://github.com/swc-project/swc/commit/352896f4cb627c1a006ea82780f993915af7e8b1)) - **(css/compat)** Support `not` with multiple arguments (#6668) ([352896f](https://github.com/swc-project/swc/commit/352896f4cb627c1a006ea82780f993915af7e8b1))
- **(css/compat)** Support `hwb` color (#6687) ([b23cf50](https://github.com/swc-project/swc/commit/b23cf50f4ff58a2c6d434cb03f2388e75a35d510))
- **(css/minifier)** Compress alpha in a hex (#6653) ([f6292e6](https://github.com/swc-project/swc/commit/f6292e63b51e5ad5a8d1fcc253e8342438098898)) - **(css/minifier)** Compress alpha in a hex (#6653) ([f6292e6](https://github.com/swc-project/swc/commit/f6292e63b51e5ad5a8d1fcc253e8342438098898))

8
Cargo.lock generated
View File

@ -3264,7 +3264,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.48.38" version = "0.48.39"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"binding_macros", "binding_macros",
@ -3317,7 +3317,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.144.30" version = "0.144.31"
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.17" version = "0.16.18"
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.17" version = "0.17.18"
dependencies = [ dependencies = [
"rustc-hash", "rustc-hash",
"serde", "serde",

View File

@ -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.38" version = "0.48.39"
[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.17", path = "../swc_css_modules" } swc_css_modules = { optional = true, version = "0.17.18", 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.17", path = "../swc_css_compat", optional = true } swc_css_compat = { version = "0.16.18", 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]

View File

@ -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.30" version = "0.144.31"
[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.17", path = "../swc_css_compat", optional = true} swc_css_compat = {version = "0.16.18", 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.17", path = "../swc_css_modules", optional = true} swc_css_modules = {version = "0.17.18", 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/"}

View File

@ -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.17" version = "0.16.18"
[lib] [lib]
bench = false bench = false

View File

@ -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.17" version = "0.17.18"
[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.17", path = "../swc_css_compat"} swc_css_compat = {version = "0.16.18", path = "../swc_css_compat"}
testing = {version = "0.31.26", path = "../testing"} testing = {version = "0.31.26", path = "../testing"}