chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-14 18:16:06 +09:00
parent 0b162102fa
commit d7c5ff48f4
5 changed files with 10 additions and 7 deletions

View File

@ -17,6 +17,9 @@
- **(es/compat)** Handle arrow parameters in class fields (#3556) ([45b44b0](https://github.com/swc-project/swc/commit/45b44b088cf0c0964232b66bb4b7b5f9e539623d))
- **(es/compat)** Fix handling of constructor in `classes` (#3505) ([0b16210](https://github.com/swc-project/swc/commit/0b162102fad75a364121b51a94fc36a7f8872259))
- **(es/minifier)** Fix analyzer (#3557) ([ac1d405](https://github.com/swc-project/swc/commit/ac1d4058f276693f52d5ccec5ccbb4c04f62bc9f))
### Documentation

6
Cargo.lock generated
View File

@ -2835,7 +2835,7 @@ dependencies = [
[[package]]
name = "swc_ecma_ast"
version = "0.65.3"
version = "0.65.4"
dependencies = [
"arbitrary",
"is-macro",
@ -3079,7 +3079,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_classes"
version = "0.45.0"
version = "0.45.1"
dependencies = [
"swc_atoms",
"swc_common",
@ -3091,7 +3091,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
version = "0.69.4"
version = "0.69.5"
dependencies = [
"ahash",
"arrayvec 0.7.2",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.3"
version = "0.65.4"
[package.metadata.docs.rs]
all-features = true

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_classes"
repository = "https://github.com/swc-project/swc.git"
version = "0.45.0"
version = "0.45.1"
[dependencies]
swc_atoms = {version = "0.2.6", path = "../swc_atoms"}

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.4"
version = "0.69.5"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
@ -30,7 +30,7 @@ swc_atoms = {version = "0.2.5", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.2", path = "../swc_ecma_ast"}
swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_classes = {version = "0.45.0", path = "../swc_ecma_transforms_classes"}
swc_ecma_transforms_classes = {version = "0.45.1", path = "../swc_ecma_transforms_classes"}
swc_ecma_transforms_macros = {version = "0.3.0", path = "../swc_ecma_transforms_macros"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}