mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 06:05:02 +03:00
chore: Publish crates
This commit is contained in:
parent
df09d2fd4b
commit
3315419038
@ -5,7 +5,11 @@
|
||||
|
||||
|
||||
|
||||
- **(es/resolver)** Make scope context identical to the vars (#7095) ([0f09e35](https://github.com/swc-project/swc/commit/0f09e356c38268ac10223d0d44dd253949bcbc59))
|
||||
- **(es/resolver)** Make scope context identical to the vars (#7095) ([0f09e35](https://github.com/swc-project/swc/commit/0f09e356c38268ac10223d0d44dd253949bcbc59))- **general**: Feat(css/minifier) Follow the CSS spec more rigorously (#6291)
|
||||
|
||||
**Description:**
|
||||
|
||||
Full refactor of the "calc" simplification to be more compliant with the spec. ([df09d2f](https://github.com/swc-project/swc/commit/df09d2fd4bef3ab83efbe46f8e3d42d26bbae95d))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3316,7 +3316,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.69.14"
|
||||
version = "0.69.15"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -3369,7 +3369,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css"
|
||||
version = "0.149.16"
|
||||
version = "0.149.17"
|
||||
dependencies = [
|
||||
"swc_css_ast",
|
||||
"swc_css_codegen",
|
||||
@ -3463,7 +3463,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_minifier"
|
||||
version = "0.109.14"
|
||||
version = "0.109.15"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"serde",
|
||||
@ -4221,7 +4221,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.118.12"
|
||||
version = "0.118.13"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -4273,7 +4273,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.115.12"
|
||||
version = "0.115.13"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"once_cell",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.69.14"
|
||||
version = "0.69.15"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -348,7 +348,7 @@ swc_cached = { optional = true, version = "0.3.15", path =
|
||||
swc_common = { optional = true, version = "0.29.37", path = "../swc_common" }
|
||||
swc_css_ast = { optional = true, version = "0.134.11", path = "../swc_css_ast" }
|
||||
swc_css_codegen = { optional = true, version = "0.144.14", path = "../swc_css_codegen" }
|
||||
swc_css_minifier = { optional = true, version = "0.109.14", path = "../swc_css_minifier" }
|
||||
swc_css_minifier = { optional = true, version = "0.109.15", path = "../swc_css_minifier" }
|
||||
swc_css_modules = { optional = true, version = "0.21.16", path = "../swc_css_modules" }
|
||||
swc_css_parser = { optional = true, version = "0.143.12", path = "../swc_css_parser" }
|
||||
swc_css_prefixer = { optional = true, version = "0.146.14", path = "../swc_css_prefixer" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.149.16"
|
||||
version = "0.149.17"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
|
||||
swc_css_ast = { version = "0.134.11", path = "../swc_css_ast" }
|
||||
swc_css_codegen = { version = "0.144.14", path = "../swc_css_codegen" }
|
||||
swc_css_compat = { version = "0.20.14", path = "../swc_css_compat", optional = true }
|
||||
swc_css_minifier = { version = "0.109.14", path = "../swc_css_minifier", optional = true }
|
||||
swc_css_minifier = { version = "0.109.15", path = "../swc_css_minifier", optional = true }
|
||||
swc_css_modules = { version = "0.21.16", path = "../swc_css_modules", optional = true }
|
||||
swc_css_parser = { version = "0.143.12", path = "../swc_css_parser" }
|
||||
swc_css_prefixer = { version = "0.146.14", path = "../swc_css_prefixer", optional = true }
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_css_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.109.14"
|
||||
version = "0.109.15"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.118.12"
|
||||
version = "0.118.13"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.28.30", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.37.43", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.115.12", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_minifier = {version = "0.115.13", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.34.42", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.28.30", path = "../swc_html_visit"}
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.115.12"
|
||||
version = "0.115.13"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
|
||||
swc_common = { version = "0.29.37", path = "../swc_common" }
|
||||
swc_css_ast = { version = "0.134.11", path = "../swc_css_ast" }
|
||||
swc_css_codegen = { version = "0.144.14", path = "../swc_css_codegen" }
|
||||
swc_css_minifier = { version = "0.109.14", path = "../swc_css_minifier" }
|
||||
swc_css_minifier = { version = "0.109.15", path = "../swc_css_minifier" }
|
||||
swc_css_parser = { version = "0.143.12", path = "../swc_css_parser" }
|
||||
swc_ecma_ast = { version = "0.100.1", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.135.4", path = "../swc_ecma_codegen" }
|
||||
|
Loading…
Reference in New Issue
Block a user