chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-19 19:41:18 +09:00
parent fd0e952aec
commit e668ff08a5
5 changed files with 15 additions and 9 deletions

View File

@ -10,6 +10,12 @@
- **(es/minifier)** Treat `!0` as a literal while inlining (#3631) ([d2c9441](https://github.com/swc-project/swc/commit/d2c94416a8735715f37fc680c7b5178bc88239ce))
### Performance
- **(es/minifier)** Fix performance bug of the mangler (#3633) ([fd0e952](https://github.com/swc-project/swc/commit/fd0e952aec427e86d276b51e8f6659de8f9eac94))
## [1.2.142] - 2022-02-18
### Bug Fixes

6
Cargo.lock generated
View File

@ -2633,7 +2633,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.129.0"
version = "0.129.1"
dependencies = [
"ahash",
"anyhow",
@ -2989,7 +2989,7 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.74.2"
version = "0.74.3"
dependencies = [
"ahash",
"ansi_term",
@ -3343,7 +3343,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.114.2"
version = "0.114.3"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

View File

@ -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.129.0"
version = "0.129.1"
[lib]
name = "swc"
@ -52,7 +52,7 @@ swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.14.8", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.74.1", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.74.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.90.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms", features = [
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.70.0", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.87.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.3", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.114.2", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.114.3", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.35.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.114.2"
version = "0.114.3"
[package.metadata.docs.rs]
all-features = true
@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.59.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.74.1", path = "../swc_ecma_minifier", optional = true}
swc_ecma_minifier = {version = "0.74.3", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.88.2", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.90.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms", optional = true}