mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
chore: Publish crates
This commit is contained in:
parent
4701da576f
commit
ea871e2879
@ -26,6 +26,9 @@
|
||||
- **(es/minifier)** Improve sequential inlining (#4231) ([fe358ad](https://github.com/swc-project/swc/commit/fe358ad0b93d6f3bd2150fc9ce888f798875beed))
|
||||
|
||||
|
||||
- **(es/minifier)** Improve inliner and evaluator (#4216) ([4701da5](https://github.com/swc-project/swc/commit/4701da576f0b12b656cf1baa57174a787b590742))
|
||||
|
||||
|
||||
- **(html)** Initialize (#4240) ([3e7872c](https://github.com/swc-project/swc/commit/3e7872c8de05ac46ef6ffb99f778ef5b64e47f1b))
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -3237,7 +3237,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "0.99.3"
|
||||
version = "0.99.4"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.99.3"
|
||||
version = "0.99.4"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -21,28 +21,28 @@ debug = ["backtrace", "swc_ecma_transforms_optimization/debug"]
|
||||
|
||||
[dependencies]
|
||||
ahash = "0.7.6"
|
||||
backtrace = {version = "0.3.61", optional = true}
|
||||
backtrace = { version = "0.3.61", optional = true }
|
||||
indexmap = "1.7.0"
|
||||
once_cell = "1.10.0"
|
||||
parking_lot = "0.12.0"
|
||||
pretty_assertions = {version = "1.1", optional = true}
|
||||
pretty_assertions = { version = "1.1", optional = true }
|
||||
rayon = "1.5.1"
|
||||
regex = "1.5.3"
|
||||
retain_mut = "0.1.2"
|
||||
rustc-hash = "1.1.0"
|
||||
serde = {version = "1.0.118", features = ["derive"]}
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
||||
swc_cached = {version = "0.1.0", path = "../swc_cached"}
|
||||
swc_common = {version = "0.17.19", path = "../swc_common"}
|
||||
swc_ecma_ast = {version = "0.74.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.102.0", path = "../swc_ecma_codegen"}
|
||||
swc_ecma_parser = {version = "0.99.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms_base = {version = "0.74.0", path = "../swc_ecma_transforms_base"}
|
||||
swc_ecma_transforms_optimization = {version = "0.111.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.78.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.60.0", path = "../swc_ecma_visit"}
|
||||
swc_timer = {version = "0.5.0", path = "../swc_timer"}
|
||||
swc_atoms = { version = "0.2", path = "../swc_atoms" }
|
||||
swc_cached = { version = "0.1.0", path = "../swc_cached" }
|
||||
swc_common = { version = "0.17.19", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.74.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.102.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.99.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.74.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_optimization = { version = "0.111.0", path = "../swc_ecma_transforms_optimization" }
|
||||
swc_ecma_utils = { version = "0.78.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.60.0", path = "../swc_ecma_visit" }
|
||||
swc_timer = { version = "0.5.0", path = "../swc_timer" }
|
||||
tracing = "0.1.32"
|
||||
unicode-id = "0.3.0"
|
||||
|
||||
@ -51,8 +51,8 @@ ansi_term = "0.12.1"
|
||||
anyhow = "1"
|
||||
criterion = "0.3.5"
|
||||
pretty_assertions = "1.1"
|
||||
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
|
||||
testing = {version = "0.19.0", path = "../testing"}
|
||||
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
|
||||
testing = { version = "0.19.0", path = "../testing" }
|
||||
|
||||
[[bench]]
|
||||
harness = false
|
||||
|
Loading…
Reference in New Issue
Block a user