chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-15 15:44:02 +09:00
parent f67796a962
commit a53420bda8
5 changed files with 12 additions and 9 deletions

View File

@ -22,6 +22,9 @@
- **(es/minifier)** Fix analyzer (#3557) ([ac1d405](https://github.com/swc-project/swc/commit/ac1d4058f276693f52d5ccec5ccbb4c04f62bc9f))
- **(es/utils)** Keep arguments to `super` call (#3570) ([f67796a](https://github.com/swc-project/swc/commit/f67796a962cfd1e5c33206622c325dfbdd3b4ee2))
### Documentation

6
Cargo.lock generated
View File

@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.126.0"
version = "0.126.1"
dependencies = [
"ahash",
"anyhow",
@ -3273,7 +3273,7 @@ dependencies = [
[[package]]
name = "swc_ecma_utils"
version = "0.65.2"
version = "0.65.3"
dependencies = [
"indexmap",
"once_cell",
@ -3300,7 +3300,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.114.0"
version = "0.114.1"
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.126.0"
version = "0.126.1"
[lib]
name = "swc"
@ -66,9 +66,9 @@ swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms", fea
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.70.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.87.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.1", path = "../swc_ecma_utils"}
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.0", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.114.1", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.33.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.2"
version = "0.65.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.0"
version = "0.114.1"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_ecma_minifier = {version = "0.74.0", path = "../swc_ecma_minifier", optional
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}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_utils = {version = "0.65.3", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit", optional = true}
[dev-dependencies]