chore: Publish crates

This commit is contained in:
Donny 2021-11-30 09:41:40 +09:00
parent 158d4bc1ed
commit 167798b599
6 changed files with 15 additions and 15 deletions

10
Cargo.lock generated
View File

@ -2433,7 +2433,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
version = "0.88.1"
version = "0.88.2"
dependencies = [
"ahash",
"anyhow",
@ -2835,7 +2835,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.67.3"
version = "0.67.4"
dependencies = [
"ahash",
"anyhow",
@ -3134,7 +3134,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.88.2"
version = "0.88.3"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -3170,7 +3170,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.4.2"
version = "0.4.3"
dependencies = [
"ahash",
"anyhow",
@ -3385,7 +3385,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.2.2"
version = "0.2.3"
dependencies = [
"anyhow",
"rayon",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0/MIT"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.1"
version = "0.88.2"
[lib]
name = "swc"
@ -58,7 +58,7 @@ swc_ecma_ext_transforms = {version = "0.38.1", path = "../swc_ecma_ext_transform
swc_ecma_loader = {version = "0.24.1", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.51.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.78.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.67.1", path = "../swc_ecma_preset_env"}
swc_ecma_preset_env = {version = "0.67.4", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.95.1", path = "../swc_ecma_transforms", features = [
"compat",
"module",
@ -72,7 +72,7 @@ swc_ecma_transforms_compat = {version = "0.52.11", path = "../swc_ecma_transform
swc_ecma_transforms_optimization = {version = "0.65.1", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.52.3", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.44.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.88.1", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.88.3", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.1", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.18.2", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.2.3", path = "../swc_visit"}

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/"
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_ecma_preset_env"
version = "0.67.3"
version = "0.67.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.2"
version = "0.88.3"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_ecma_codegen = {version = "0.80.0", path = "../swc_ecma_codegen", optional =
swc_ecma_dep_graph = {version = "0.47.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.51.3", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.78.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.67.1", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_preset_env = {version = "0.67.4", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.95.1", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.52.3", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.44.0", path = "../swc_ecma_visit", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.2"
version = "0.4.3"
[package.metadata.docs.rs]
all-features = true
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.1", path = "../swc_node_comments/"}
[dev-dependencies]
pretty_assertions = "0.7.1"
swc = {version = "0.88.1", path = "../swc"}
swc = {version = "0.88.2", path = "../swc"}
swc_ecma_ast = {version = "0.58.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.78.7", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.95.1", path = "../swc_ecma_transforms/"}

View File

@ -5,7 +5,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.2"
version = "0.2.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -20,7 +20,7 @@ swc_ecma_transforms_base = {version = "0.44.3", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.52.3", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.44.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.2.1", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.4.2", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.4.3", path = "../swc_estree_compat"}
swc_timer = {version = "0.1.0", path = "../swc_timer"}
tracing = "0.1.29"