chore: Publish crates

This commit is contained in:
SWC Bot 2022-06-18 04:26:44 +00:00
parent e85c0db926
commit 98dd293198
6 changed files with 14 additions and 11 deletions

View File

@ -32,6 +32,9 @@
- **(es/config)** Add `isModule` to `.swcrc` (#4993) ([e85c0db](https://github.com/swc-project/swc/commit/e85c0db92689d0eaf656ac869b6cb16ebec43b6f))
- **(html/codegen)** Add option for tag omission of self closing void elements (#4971) ([d07ab2c](https://github.com/swc-project/swc/commit/d07ab2cb91a68ef88bd9adbdcc18217818a0c31d)) - **(html/codegen)** Add option for tag omission of self closing void elements (#4971) ([d07ab2c](https://github.com/swc-project/swc/commit/d07ab2cb91a68ef88bd9adbdcc18217818a0c31d))

8
Cargo.lock generated
View File

@ -2935,7 +2935,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.188.0" version = "0.189.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -3062,7 +3062,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_cli" name = "swc_cli"
version = "0.62.0" version = "0.63.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"atty", "atty",
@ -3863,7 +3863,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_estree_compat" name = "swc_estree_compat"
version = "0.108.0" version = "0.109.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -4182,7 +4182,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_webpack_ast" name = "swc_webpack_ast"
version = "0.106.0" version = "0.107.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"rayon", "rayon",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.188.0" version = "0.189.0"
[lib] [lib]
bench = false bench = false

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_cli" name = "swc_cli"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.62.0" version = "0.63.0"
[[bin]] [[bin]]
bench = false bench = false
@ -31,7 +31,7 @@ rayon = "1"
relative-path = "1.6.1" relative-path = "1.6.1"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["unbounded_depth"] } serde_json = { version = "1", features = ["unbounded_depth"] }
swc = { version = "0.188.0", path = "../swc" } swc = { version = "0.189.0", path = "../swc" }
swc_common = { version = "0.18.0", path = "../swc_common" } swc_common = { version = "0.18.0", path = "../swc_common" }
swc_plugin_runner = { version = "0.56.0", path = "../swc_plugin_runner", default-features = false, optional = true } swc_plugin_runner = { version = "0.56.0", path = "../swc_plugin_runner", default-features = false, optional = true }
swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_estree_compat" name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.108.0" version = "0.109.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,7 +38,7 @@ swc_node_comments = {version = "0.5.0", path = "../swc_node_comments/"}
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
pretty_assertions = "1.1" pretty_assertions = "1.1"
swc = {version = "0.188.0", path = "../swc"} swc = {version = "0.189.0", path = "../swc"}
swc_ecma_ast = {version = "0.79.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.79.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.105.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.105.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.160.0", path = "../swc_ecma_transforms/"} swc_ecma_transforms = {version = "0.160.0", path = "../swc_ecma_transforms/"}

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_webpack_ast" name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.106.0" version = "0.107.0"
[lib] [lib]
bench = false bench = false
@ -24,7 +24,7 @@ swc_ecma_transforms_base = {version = "0.89.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.86.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.86.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.65.0", path = "../swc_ecma_visit"} swc_ecma_visit = {version = "0.65.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"} swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.108.0", path = "../swc_estree_compat"} swc_estree_compat = {version = "0.109.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.6.0", path = "../swc_timer"} swc_timer = {version = "0.6.0", path = "../swc_timer"}
tracing = "0.1.32" tracing = "0.1.32"