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
bf5ba28471
commit
0674c1d287
@ -17,6 +17,9 @@
|
||||
- **(es/config)** Auto-detect `tsx` (#4696) ([ad309f4](https://github.com/swc-project/swc/commit/ad309f4050dfb3483ed56108cc11f4865dca3f89))
|
||||
|
||||
|
||||
- **(es/config)** Add `jsc.output.charset` (#4708) ([bf5ba28](https://github.com/swc-project/swc/commit/bf5ba284715bc86904c47c2dc2e3575ff5fe09be))
|
||||
|
||||
|
||||
- **(es/minifier)** Don't hoist functions with `dead_code` (#4695) ([183e884](https://github.com/swc-project/swc/commit/183e884cbfa775868f91fbea8604b63352b583a6))
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2956,7 +2956,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.180.1"
|
||||
version = "0.181.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3078,7 +3078,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli"
|
||||
version = "0.54.0"
|
||||
version = "0.55.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
@ -3857,7 +3857,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.100.0"
|
||||
version = "0.101.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -4147,7 +4147,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.98.0"
|
||||
version = "0.99.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"rayon",
|
||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.180.1"
|
||||
version = "0.181.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.54.0"
|
||||
version = "0.55.0"
|
||||
|
||||
[[bin]]
|
||||
bench = false
|
||||
@ -31,7 +31,7 @@ rayon = "1"
|
||||
relative-path = "1.6.1"
|
||||
serde = {version = "1", features = ["derive"]}
|
||||
serde_json = {version = "1", features = ["unbounded_depth"]}
|
||||
swc = {version = "0.180.0", path = "../swc"}
|
||||
swc = {version = "0.181.0", path = "../swc"}
|
||||
swc_common = { version = "0.18.0", path = "../swc_common"}
|
||||
swc_plugin_runner = {version = "0.55.0", path = "../swc_plugin_runner", default-features = false, optional = true}
|
||||
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.100.0"
|
||||
version = "0.101.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -38,7 +38,7 @@ swc_node_comments = {version = "0.5.0", path = "../swc_node_comments/"}
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
pretty_assertions = "1.1"
|
||||
swc = {version = "0.180.0", path = "../swc"}
|
||||
swc = {version = "0.181.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.78.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.104.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.154.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.98.0"
|
||||
version = "0.99.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -24,7 +24,7 @@ swc_ecma_transforms_base = {version = "0.85.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.85.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.64.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.100.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.101.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.6.0", path = "../swc_timer"}
|
||||
tracing = "0.1.32"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user