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
4771aa206a
commit
2eb4c1cabd
@ -14,6 +14,9 @@
|
||||
- **(bundler)** Don't panic while finding exports (#6947) ([542bb62](https://github.com/swc-project/swc/commit/542bb62ef78a999fe6c636be821427691ce0b071))
|
||||
|
||||
|
||||
- **(css/modules)** Fix CSS `animation` on CSS Modules (#6969) ([4771aa2](https://github.com/swc-project/swc/commit/4771aa206a6aa8c48f41eeafba12040c04358885))
|
||||
|
||||
|
||||
- **(es/minifier)** Fix `toFixed`, `toPrecision`, `toExponential` and `toString` of Number (#6960) ([9382bda](https://github.com/swc-project/swc/commit/9382bda786613abf15cecb0bf3531dd68bb6166b))
|
||||
|
||||
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -3306,7 +3306,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.59.34"
|
||||
version = "0.59.35"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -3359,7 +3359,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css"
|
||||
version = "0.149.5"
|
||||
version = "0.149.6"
|
||||
dependencies = [
|
||||
"swc_css_ast",
|
||||
"swc_css_codegen",
|
||||
@ -3470,7 +3470,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_modules"
|
||||
version = "0.21.5"
|
||||
version = "0.21.6"
|
||||
dependencies = [
|
||||
"rustc-hash",
|
||||
"serde",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.59.34"
|
||||
version = "0.59.35"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -349,7 +349,7 @@ swc_common = { optional = true, version = "0.29.31", path
|
||||
swc_css_ast = { optional = true, version = "0.134.4", path = "../swc_css_ast" }
|
||||
swc_css_codegen = { optional = true, version = "0.144.4", path = "../swc_css_codegen" }
|
||||
swc_css_minifier = { optional = true, version = "0.109.4", path = "../swc_css_minifier" }
|
||||
swc_css_modules = { optional = true, version = "0.21.5", path = "../swc_css_modules" }
|
||||
swc_css_modules = { optional = true, version = "0.21.6", path = "../swc_css_modules" }
|
||||
swc_css_parser = { optional = true, version = "0.143.4", path = "../swc_css_parser" }
|
||||
swc_css_prefixer = { optional = true, version = "0.146.4", path = "../swc_css_prefixer" }
|
||||
swc_css_utils = { optional = true, version = "0.131.4", path = "../swc_css_utils/" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.149.5"
|
||||
version = "0.149.6"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -26,7 +26,7 @@ swc_css_ast = { version = "0.134.4", path = "../swc_css_ast" }
|
||||
swc_css_codegen = { version = "0.144.4", path = "../swc_css_codegen" }
|
||||
swc_css_compat = { version = "0.20.4", path = "../swc_css_compat", optional = true }
|
||||
swc_css_minifier = { version = "0.109.4", path = "../swc_css_minifier", optional = true }
|
||||
swc_css_modules = { version = "0.21.5", path = "../swc_css_modules", optional = true }
|
||||
swc_css_modules = { version = "0.21.6", path = "../swc_css_modules", optional = true }
|
||||
swc_css_parser = { version = "0.143.4", path = "../swc_css_parser" }
|
||||
swc_css_prefixer = { version = "0.146.4", path = "../swc_css_prefixer", optional = true }
|
||||
swc_css_utils = { version = "0.131.4", path = "../swc_css_utils/" }
|
||||
|
@ -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.21.5"
|
||||
version = "0.21.6"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user