chore: Bump crates

This commit is contained in:
SWC Bot 2024-02-07 03:54:31 +00:00
parent e5585e99f1
commit 8febd34a76
9 changed files with 18 additions and 18 deletions

View File

@ -34,6 +34,9 @@
- **(config)** Remove an empty file in `swc_config` ([#8609](https://github.com/swc-project/swc/issues/8609)) ([d87fef0](https://github.com/swc-project/swc/commit/d87fef0fea661b3a50e43af85c12db98e978bc82))
- **(preset-env)** Update `browserslist-rs` ([#8614](https://github.com/swc-project/swc/issues/8614)) ([e5585e9](https://github.com/swc-project/swc/commit/e5585e99f120eb7c76625d90961fd6e4f12579e5))
### Refactor
@ -1460,9 +1463,6 @@
- **(es/compat)** Visit children of `while` statement in the `generator` pass ([#7624](https://github.com/swc-project/swc/issues/7624)) ([d2ac2c1](https://github.com/swc-project/swc/commit/d2ac2c16a3d9067b3afa14ba6ae8745b553c6642))
- **(es/compat)** Fix loose mode of the `spread` pass ([#7608](https://github.com/swc-project/swc/issues/7608)) ([a7daa5b](https://github.com/swc-project/swc/commit/a7daa5b28e45c0b310850279433178bf75f0f5f0))

8
Cargo.lock generated
View File

@ -2797,7 +2797,7 @@ dependencies = [
[[package]]
name = "preset_env_base"
version = "0.4.10"
version = "0.4.11"
dependencies = [
"ahash 0.8.7",
"anyhow",
@ -4037,7 +4037,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.157.33"
version = "0.157.34"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -4179,7 +4179,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.153.29"
version = "0.153.30"
dependencies = [
"once_cell",
"preset_env_base",
@ -4586,7 +4586,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.206.1"
version = "0.206.2"
dependencies = [
"anyhow",
"criterion",

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/"
edition = "2021"
license = "Apache-2.0"
name = "preset_env_base"
version = "0.4.10"
version = "0.4.11"
[lib]
bench = false

View File

@ -86,7 +86,7 @@ swc_ecma_loader = { version = "0.45.18", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.192.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.1", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { version = "0.206.2", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.1", path = "../swc_ecma_transforms", features = [
"compat",
"module",

View File

@ -336,7 +336,7 @@ swc_css_compat = { optional = true, version = "0.27.27", path
swc_css_minifier = { optional = true, version = "0.116.27", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.29", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.25", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.29", path = "../swc_css_prefixer" }
swc_css_prefixer = { optional = true, version = "0.153.30", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.17", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.17", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.112.0", path = "../swc_ecma_ast" }
@ -344,7 +344,7 @@ swc_ecma_codegen = { optional = true, version = "0.148.1", path
swc_ecma_loader = { optional = true, version = "0.45.18", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.192.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.206.1", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.206.2", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.54.4", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.137.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.1", path = "../swc_ecma_transforms_compat" }

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.157.33"
version = "0.157.34"
[package.metadata.docs.rs]
all-features = true
@ -28,6 +28,6 @@ swc_css_compat = { version = "0.27.27", path = "../swc_css_compat", optional =
swc_css_minifier = { version = "0.116.27", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.29", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.25", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.29", path = "../swc_css_prefixer", optional = true }
swc_css_prefixer = { version = "0.153.30", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.17", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.17", path = "../swc_css_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.153.29"
version = "0.153.30"
[lib]
bench = false
@ -17,7 +17,7 @@ once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
preset_env_base = { version = "0.4.10", path = "../preset_env_base" }
preset_env_base = { version = "0.4.11", path = "../preset_env_base" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.16", path = "../swc_common" }
swc_css_ast = { version = "0.140.17", path = "../swc_css_ast" }

View File

@ -7,7 +7,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
version = "0.206.1"
version = "0.206.2"
[lib]
bench = false
@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
st-map = "0.2.0"
preset_env_base = { version = "0.4.10", path = "../preset_env_base" }
preset_env_base = { version = "0.4.11", path = "../preset_env_base" }
rustc-hash = "1.1.0"
string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }

View File

@ -42,7 +42,7 @@ swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.1", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.192.2", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.143.1", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.206.1", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "0.206.2", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.59.4", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.229.1", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.127.1", path = "../swc_ecma_utils", optional = true }