mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
chore: Publish crates
This commit is contained in:
parent
7de7ecaa85
commit
66f00bef88
@ -41,6 +41,9 @@
|
||||
- **(es/compat)** Implement loose mode for `class_properties` (#3722) ([14155eb](https://github.com/swc-project/swc/commit/14155eb0e7f6295471c92067afa4dfb84b3224ca))
|
||||
|
||||
|
||||
- **(es/dep-graph)** Add `TsImportEqualsDecl` for `DependencyCollector` (#3758) ([7de7eca](https://github.com/swc-project/swc/commit/7de7ecaa85f21d074d8ca8a05dae2bf5b4ab3ce8))
|
||||
|
||||
|
||||
- **(es/parser)** Provide more api for reducing binary size (#3747) ([47ccff8](https://github.com/swc-project/swc/commit/47ccff8a7ca0054fcd761ea5878a92165f7e1c6b))
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2962,7 +2962,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_dep_graph"
|
||||
version = "0.62.0"
|
||||
version = "0.63.0"
|
||||
dependencies = [
|
||||
"pretty_assertions",
|
||||
"swc_atoms",
|
||||
@ -3381,7 +3381,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.122.0"
|
||||
version = "0.123.0"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
@ -3417,7 +3417,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.56.0"
|
||||
version = "0.57.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3616,7 +3616,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.54.0"
|
||||
version = "0.55.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"rayon",
|
||||
|
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.75.0", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.94.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.69.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.122.0", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.123.0", path = "../swc_ecmascript"}
|
||||
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
|
||||
swc_plugin_runner = {version = "0.38.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_dep_graph"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.62.0"
|
||||
version = "0.63.0"
|
||||
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.122.0"
|
||||
version = "0.123.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -35,7 +35,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
||||
[dependencies]
|
||||
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.93.0", path = "../swc_ecma_codegen", optional = true}
|
||||
swc_ecma_dep_graph = {version = "0.62.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||
swc_ecma_dep_graph = {version = "0.63.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||
swc_ecma_minifier = {version = "0.81.0", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||
swc_ecma_preset_env = {version = "0.98.0", path = "../swc_ecma_preset_env", optional = true}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.56.0"
|
||||
version = "0.57.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.54.0"
|
||||
version = "0.55.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.63.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.69.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.56.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.57.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||
tracing = "0.1.31"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user