chore: Publish crates

This commit is contained in:
SWC Bot 2022-08-14 09:59:22 +00:00
parent 40bb695f64
commit 554b459e26
3 changed files with 45 additions and 42 deletions

View File

@ -11,6 +11,9 @@
- **(es/minifier)** Remove wrong code (#5485) ([2045fe6](https://github.com/swc-project/swc/commit/2045fe627397da217dc28fca52bd5cf85d42d2ae))
- **(es/minifier)** Fix context of call/new expressions (#5487) ([40bb695](https://github.com/swc-project/swc/commit/40bb695f64da7fe1f7d892ded51bf77101cea4bc))
- **(swc_core)** Bump up `swc_plugin_macro` (#5486) ([04e11a5](https://github.com/swc-project/swc/commit/04e11a577dcda1b745faa120e7bb94e8ba408d1e))
### Performance

82
Cargo.lock generated
View File

@ -808,7 +808,7 @@ dependencies = [
"swc_common 0.27.7",
"swc_ecma_ast 0.90.7",
"swc_ecma_codegen 0.121.4",
"swc_ecma_minifier 0.144.5",
"swc_ecma_minifier 0.144.6",
"swc_ecma_parser 0.117.4",
"swc_ecma_transforms_base 0.103.7",
"swc_ecma_visit 0.76.5",
@ -3052,7 +3052,7 @@ dependencies = [
"swc_ecma_ext_transforms 0.85.4",
"swc_ecma_lints 0.58.4",
"swc_ecma_loader 0.39.4",
"swc_ecma_minifier 0.144.5",
"swc_ecma_minifier 0.144.6",
"swc_ecma_parser 0.117.4",
"swc_ecma_preset_env 0.158.3",
"swc_ecma_testing",
@ -3107,7 +3107,7 @@ dependencies = [
"swc_ecma_ext_transforms 0.85.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_lints 0.58.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_loader 0.39.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_minifier 0.144.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_minifier 0.144.5",
"swc_ecma_parser 0.117.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_preset_env 0.158.3 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_transforms 0.183.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -3180,7 +3180,7 @@ dependencies = [
"swc_ecma_ast 0.90.7",
"swc_ecma_codegen 0.121.4",
"swc_ecma_loader 0.39.4",
"swc_ecma_minifier 0.144.5",
"swc_ecma_minifier 0.144.6",
"swc_ecma_parser 0.117.4",
"swc_ecma_transforms_base 0.103.7",
"swc_ecma_transforms_optimization 0.152.3",
@ -3828,6 +3828,41 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.144.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0fe9df3572e7e8e12340a4937c84643143cc6d55690813695bbe97fccb231e"
dependencies = [
"ahash",
"arrayvec",
"indexmap",
"num-bigint",
"num_cpus",
"once_cell",
"parking_lot",
"rayon",
"regex",
"retain_mut",
"rustc-hash",
"serde",
"serde_json",
"swc_atoms 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_cached 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_common 0.27.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_config 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_ast 0.90.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_codegen 0.121.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_parser 0.117.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_transforms_base 0.103.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_transforms_optimization 0.152.3 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_utils 0.99.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_visit 0.76.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_timer 0.15.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing",
"unicode-id",
]
[[package]]
name = "swc_ecma_minifier"
version = "0.144.6"
dependencies = [
"ahash",
"ansi_term",
@ -3867,41 +3902,6 @@ dependencies = [
"walkdir",
]
[[package]]
name = "swc_ecma_minifier"
version = "0.144.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0fe9df3572e7e8e12340a4937c84643143cc6d55690813695bbe97fccb231e"
dependencies = [
"ahash",
"arrayvec",
"indexmap",
"num-bigint",
"num_cpus",
"once_cell",
"parking_lot",
"rayon",
"regex",
"retain_mut",
"rustc-hash",
"serde",
"serde_json",
"swc_atoms 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_cached 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_common 0.27.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_config 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_ast 0.90.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_codegen 0.121.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_parser 0.117.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_transforms_base 0.103.7 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_transforms_optimization 0.152.3 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_utils 0.99.4 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_ecma_visit 0.76.5 (registry+https://github.com/rust-lang/crates.io-index)",
"swc_timer 0.15.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing",
"unicode-id",
]
[[package]]
name = "swc_ecma_parser"
version = "0.117.4"
@ -4580,7 +4580,7 @@ dependencies = [
"swc_ecma_ast 0.90.7",
"swc_ecma_codegen 0.121.4",
"swc_ecma_dep_graph",
"swc_ecma_minifier 0.144.5",
"swc_ecma_minifier 0.144.6",
"swc_ecma_parser 0.117.4",
"swc_ecma_preset_env 0.158.3",
"swc_ecma_quote",
@ -4787,7 +4787,7 @@ dependencies = [
"swc_css_parser",
"swc_ecma_ast 0.90.7",
"swc_ecma_codegen 0.121.4",
"swc_ecma_minifier 0.144.5",
"swc_ecma_minifier 0.144.6",
"swc_ecma_parser 0.117.4",
"swc_ecma_transforms_base 0.103.7",
"swc_ecma_visit 0.76.5",

View File

@ -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.144.5"
version = "0.144.6"
[package.metadata.docs.rs]
all-features = true