From ea871e2879c53685564534fa6c789af1d11c370e Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 5 Apr 2022 06:27:53 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/swc_ecma_minifier/Cargo.toml | 34 ++++++++++++++--------------- 3 files changed, 21 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 608d149f658..082cac013cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index f9a71fdc3fb..b3f4e679a5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3237,7 +3237,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.99.3" +version = "0.99.4" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 18de0bab74b..b3aa73d38bc 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -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