chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-13 04:34:36 +09:00
parent 342c320bfa
commit 83274c8159
5 changed files with 18 additions and 9 deletions

View File

@ -7,6 +7,15 @@
- **(es/compat)** Allow destructuring assignment to an object property (#3544) ([5802b62](https://github.com/swc-project/swc/commit/5802b62e3486b0fba176533fcd2998f47c60910d))
- **(es/compat)** Fix destructing of `const` (#3545) ([342c320](https://github.com/swc-project/swc/commit/342c320bfa1f43f25262c0ba403a51df8228c655))
### Documentation
- **(plugin)** Fix typo (#3547) ([3fc16cd](https://github.com/swc-project/swc/commit/3fc16cdc1c69a5ee0ecb506e3a3c496c51e52756))
### Features

6
Cargo.lock generated
View File

@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.124.2"
version = "0.124.3"
dependencies = [
"ahash",
"anyhow",
@ -3031,7 +3031,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms"
version = "0.116.1"
version = "0.116.2"
dependencies = [
"pretty_assertions",
"sourcemap",
@ -3091,7 +3091,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
version = "0.69.1"
version = "0.69.2"
dependencies = [
"ahash",
"arrayvec 0.7.2",

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.124.2"
version = "0.124.3"
[lib]
name = "swc"
@ -55,7 +55,7 @@ swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = [
swc_ecma_minifier = {version = "0.73.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.89.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.116.1", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = {version = "0.116.2", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -64,7 +64,7 @@ swc_ecma_transforms = {version = "0.116.1", path = "../swc_ecma_transforms", fea
"typescript",
]}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.1", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_compat = {version = "0.69.2", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.1", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.116.1"
version = "0.116.2"
[package.metadata.docs.rs]
all-features = true
@ -28,7 +28,7 @@ swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.1", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_compat = {version = "0.69.2", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.77.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_proposal = {version = "0.76.0", path = "../swc_ecma_transforms_proposal", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.69.1"
version = "0.69.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]