chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-04-20 13:18:26 +09:00
parent 55708ba272
commit 15efe48784
8 changed files with 22 additions and 22 deletions

14
Cargo.lock generated
View File

@ -2838,7 +2838,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.168.3"
version = "0.169.0"
dependencies = [
"ahash",
"ansi_term",
@ -2958,7 +2958,7 @@ dependencies = [
[[package]]
name = "swc_cli"
version = "0.42.1"
version = "0.43.0"
dependencies = [
"anyhow",
"atty",
@ -3703,7 +3703,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.88.0"
version = "0.89.0"
dependencies = [
"ahash",
"anyhow",
@ -3879,7 +3879,7 @@ dependencies = [
[[package]]
name = "swc_plugin"
version = "0.47.0"
version = "0.48.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3902,7 +3902,7 @@ dependencies = [
[[package]]
name = "swc_plugin_proxy"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"better_scoped_tls",
"rkyv",
@ -3911,7 +3911,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.52.0"
version = "0.53.0"
dependencies = [
"anyhow",
"once_cell",
@ -3975,7 +3975,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.86.0"
version = "0.87.0"
dependencies = [
"anyhow",
"rayon",

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.168.3"
version = "0.169.0"
[lib]
bench = false
@ -81,8 +81,8 @@ swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" }
swc_ecmascript = { version = "0.147.0", path = "../swc_ecmascript" }
swc_error_reporters = { version = "0.1.0", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.1.1", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.52.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.53.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.5.0", path = "../swc_timer" }
swc_visit = { version = "0.3.0", path = "../swc_visit" }
tracing = "0.1.32"

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli"
repository = "https://github.com/swc-project/swc.git"
version = "0.42.1"
version = "0.43.0"
[[bin]]
bench = false
@ -31,9 +31,9 @@ rayon = "1"
relative-path = "1.6.1"
serde = {version = "1", features = ["derive"]}
serde_json = {version = "1", features = ["unbounded_depth"]}
swc = {version = "0.168.0", path = "../swc"}
swc = {version = "0.169.0", path = "../swc"}
swc_common = { version = "0.17.20", path = "../swc_common"}
swc_plugin_runner = {version = "0.52.0", path = "../swc_plugin_runner", default-features = false, optional = true}
swc_plugin_runner = {version = "0.53.0", path = "../swc_plugin_runner", default-features = false, optional = true}
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
tracing = "0.1.32"
tracing-chrome = "0.5.0"

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.0"
version = "0.89.0"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
[dev-dependencies]
criterion = "0.3"
pretty_assertions = "1.1"
swc = {version = "0.168.0", path = "../swc"}
swc = {version = "0.169.0", path = "../swc"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.145.0", path = "../swc_ecma_transforms/"}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_plugin"
repository = "https://github.com/swc-project/swc.git"
version = "0.47.0"
version = "0.48.0"
[package.metadata.docs.rs]
all-features = true
@ -29,7 +29,7 @@ swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [
swc_ecma_quote = { version = "0.13.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.81.0", path = "../swc_ecma_utils" }
swc_plugin_proxy = { version = "0.1.1", path = "../swc_plugin_proxy", features = [
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [
"plugin-mode",
] }
swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" }

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.2"
version = "0.2.0"
[lib]
bench = false

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git"
version = "0.52.0"
version = "0.53.0"
[lib]
bench = false
@ -33,7 +33,7 @@ swc_common = { version = "0.17.20", path = "../swc_common", features = [
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }
swc_plugin_proxy = { version = "0.1.1", path = "../swc_plugin_proxy", features = [
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [
"plugin-rt",
] }
tracing = "0.1.32"

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.86.0"
version = "0.87.0"
[lib]
bench = false
@ -24,7 +24,7 @@ swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.88.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.89.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.5.0", path = "../swc_timer"}
tracing = "0.1.32"