chore: Publish crates

This commit is contained in:
SWC Bot 2023-06-30 02:55:28 +00:00
parent f0ab5b39f7
commit efcad6a499
5 changed files with 11 additions and 8 deletions

View File

@ -5,6 +5,9 @@
- **(css/modules)** Fix `:local` and `:global` (#7600) ([f0ab5b3](https://github.com/swc-project/swc/commit/f0ab5b39f79685023cfc9529bc60e96231ad18d7))
- **(es/fixer)** Don't change default decls to default expr exports (#7585) ([e272545](https://github.com/swc-project/swc/commit/e2725451aa507c18222c5f66cf0a5a049c92bd0b)) - **(es/fixer)** Don't change default decls to default expr exports (#7585) ([e272545](https://github.com/swc-project/swc/commit/e2725451aa507c18222c5f66cf0a5a049c92bd0b))

6
Cargo.lock generated
View File

@ -3709,7 +3709,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.79.1" version = "0.79.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"binding_macros", "binding_macros",
@ -3760,7 +3760,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.153.22" version = "0.153.23"
dependencies = [ dependencies = [
"swc_css_ast", "swc_css_ast",
"swc_css_codegen", "swc_css_codegen",
@ -3870,7 +3870,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_modules" name = "swc_css_modules"
version = "0.25.20" version = "0.25.21"
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.79.1" version = "0.79.2"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -335,7 +335,7 @@ swc_css_ast = { optional = true, version = "0.137.16", path
swc_css_codegen = { optional = true, version = "0.147.19", path = "../swc_css_codegen" } swc_css_codegen = { optional = true, version = "0.147.19", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.23.19", path = "../swc_css_compat" } swc_css_compat = { optional = true, version = "0.23.19", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.112.19", path = "../swc_css_minifier" } swc_css_minifier = { optional = true, version = "0.112.19", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.25.20", path = "../swc_css_modules" } swc_css_modules = { optional = true, version = "0.25.21", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.146.19", path = "../swc_css_parser" } swc_css_parser = { optional = true, version = "0.146.19", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.149.21", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.149.21", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.134.16", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.134.16", path = "../swc_css_utils/" }

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.153.22" version = "0.153.23"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -26,7 +26,7 @@ swc_css_ast = { version = "0.137.16", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.147.19", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.147.19", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.23.19", path = "../swc_css_compat", optional = true } swc_css_compat = { version = "0.23.19", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.112.19", path = "../swc_css_minifier", optional = true } swc_css_minifier = { version = "0.112.19", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.25.20", path = "../swc_css_modules", optional = true } swc_css_modules = { version = "0.25.21", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.146.19", path = "../swc_css_parser" } swc_css_parser = { version = "0.146.19", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.149.21", path = "../swc_css_prefixer", optional = true } swc_css_prefixer = { version = "0.149.21", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.134.16", path = "../swc_css_utils/" } swc_css_utils = { version = "0.134.16", path = "../swc_css_utils/" }

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.25.20" version = "0.25.21"
[lib] [lib]
bench = false bench = false