chore: Publish crates

This commit is contained in:
Donny 2022-01-17 15:17:30 +09:00
parent fa5c063144
commit a424ac30ed
5 changed files with 12 additions and 9 deletions

View File

@ -7,6 +7,9 @@
- **(es/minifier)** Fix analysis of unary expressions (#3286) ([b55ae4b](https://github.com/swc-project/swc/commit/b55ae4b312b5677efeb9f3e9697dc2bcff81e322))
- **(es/minifier)** Inline into interpolations in tagged template literals (#3287) ([fa5c063](https://github.com/swc-project/swc/commit/fa5c063144246ce634305399787e08498765eb8f))
## [1.2.130] - 2022-01-17
### Bug Fixes

6
Cargo.lock generated
View File

@ -2652,7 +2652,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.116.1"
version = "0.116.2"
dependencies = [
"ahash",
"anyhow",
@ -3011,7 +3011,7 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.70.1"
version = "0.70.2"
dependencies = [
"ahash",
"ansi_term",
@ -3365,7 +3365,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.110.1"
version = "0.110.2"
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.116.1"
version = "0.116.2"
[lib]
name = "swc"
@ -52,7 +52,7 @@ swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.9.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.70.1", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.113.0", path = "../swc_ecma_transforms", features = [
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.0", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.110.1", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.110.2", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.30.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.70.1"
version = "0.70.2"
[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.110.1"
version = "0.110.2"
[package.metadata.docs.rs]
all-features = true
@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.70.1", path = "../swc_ecma_minifier", optional = true}
swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.113.0", path = "../swc_ecma_transforms", optional = true}