chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-05-10 00:08:15 +09:00
parent 51d7078175
commit ad6b71150e
4 changed files with 9 additions and 9 deletions

6
Cargo.lock generated
View File

@ -2873,7 +2873,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.176.0"
version = "0.176.1"
dependencies = [
"ahash",
"ansi_term",
@ -3696,7 +3696,7 @@ dependencies = [
[[package]]
name = "swc_ecma_utils"
version = "0.83.0"
version = "0.83.1"
dependencies = [
"indexmap",
"once_cell",
@ -3723,7 +3723,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.154.0"
version = "0.154.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.176.0"
version = "0.176.1"
[lib]
bench = false
@ -71,9 +71,9 @@ swc_ecma_transforms = { version = "0.151.0", path = "../swc_ecma_transforms", fe
swc_ecma_transforms_base = { version = "0.82.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.96.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.121.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.83.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.83.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.63.0", path = "../swc_ecma_visit" }
swc_ecmascript = { version = "0.154.0", path = "../swc_ecmascript" }
swc_ecmascript = { version = "0.154.1", path = "../swc_ecmascript" }
swc_error_reporters = { version = "0.1.2", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", optional = true }

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.83.0"
version = "0.83.1"
[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.154.0"
version = "0.154.1"
[package.metadata.docs.rs]
all-features = true
@ -44,7 +44,7 @@ swc_ecma_minifier = {version = "0.111.0", path = "../swc_ecma_minifier", optiona
swc_ecma_parser = {version = "0.103.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.126.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.151.0", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.83.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_utils = {version = "0.83.1", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.63.0", path = "../swc_ecma_visit", optional = true}
[dev-dependencies]