chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-03-25 21:15:57 +09:00
parent 1a3ed8e625
commit 32c2de1181
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -3609,7 +3609,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_optimization"
version = "0.108.0"
version = "0.108.1"
dependencies = [
"ahash",
"dashmap",
@ -3756,7 +3756,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.139.0"
version = "0.139.1"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

View File

@ -36,7 +36,7 @@ swc_ecma_ast = { version = "0.73.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.100.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.97.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.72.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.108.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.108.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.76.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.59.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.5.0", path = "../swc_timer" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_optimization"
repository = "https://github.com/swc-project/swc.git"
version = "0.108.0"
version = "0.108.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]

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.139.0"
version = "0.139.1"
[package.metadata.docs.rs]
all-features = true
@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = { version = "0.73.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.100.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_dep_graph = { version = "0.69.0", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.96.0", path = "../swc_ecma_minifier", optional = true }
swc_ecma_minifier = { version = "0.96.1", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.97.0", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.113.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_transforms = { version = "0.138.0", path = "../swc_ecma_transforms", optional = true }