mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 04:47:03 +03:00
chore: Publish crates
This commit is contained in:
parent
40b8a4e596
commit
8ba1f201b9
@ -14,6 +14,9 @@
|
||||
|
||||
|
||||
|
||||
- **(common)** Implement a pretty error reporter (#3946) ([40b8a4e](https://github.com/swc-project/swc/commit/40b8a4e596f0df33a325c93b75e5abab1336be11))
|
||||
|
||||
|
||||
- **(css/parser)** Improve error reporting (#3999) ([96d6f37](https://github.com/swc-project/swc/commit/96d6f37c204f4962d0850a4ee2e38652d4833fa3))
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2950,7 +2950,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.150.4"
|
||||
version = "0.151.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3064,7 +3064,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli"
|
||||
version = "0.24.0"
|
||||
version = "0.25.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
@ -3777,7 +3777,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3979,7 +3979,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.68.0"
|
||||
version = "0.69.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.150.4"
|
||||
version = "0.151.0"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
|
@ -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.24.0"
|
||||
version = "0.25.0"
|
||||
|
||||
[[bin]]
|
||||
name = "swc"
|
||||
@ -20,7 +20,7 @@ rayon = "1"
|
||||
relative-path = "1.6.1"
|
||||
serde = {version = "1", features = ["derive"]}
|
||||
serde_json = {version = "1", features = ["unbounded_depth"]}
|
||||
swc = {version = "0.150.0", path = "../swc"}
|
||||
swc = {version = "0.151.0", path = "../swc"}
|
||||
swc_common = {version = "0.17.5", path = "../swc_common"}
|
||||
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
|
||||
tracing = "0.1.32"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.1"
|
||||
swc = {version = "0.150.0", path = "../swc"}
|
||||
swc = {version = "0.151.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.70.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.93.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.131.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.68.0"
|
||||
version = "0.69.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.67.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.72.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.56.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.70.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.71.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||
tracing = "0.1.32"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user