chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-22 20:15:32 +00:00
parent ca0a448e8f
commit 1cdc4d5948
6 changed files with 14 additions and 11 deletions

View File

@ -64,6 +64,9 @@
- **(es/preset-env)** Upgrade `browserslist-rs` (#3670) ([3199966](https://github.com/swc-project/swc/commit/319996698d5531ea04afe8a6b3f3ed657620f8b4))
- **(plugin)** Pass `NODE_ENV` to plugins using the plugin context (#3677) ([ca0a448](https://github.com/swc-project/swc/commit/ca0a448e8ff85a4a0d02e3229ebcb2603a0b5d9a))
### Miscellaneous Tasks

8
Cargo.lock generated
View File

@ -2639,7 +2639,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.133.0"
version = "0.134.0"
dependencies = [
"ahash",
"anyhow",
@ -2737,7 +2737,7 @@ dependencies = [
[[package]]
name = "swc_cli"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"anyhow",
"clap",
@ -3383,7 +3383,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.51.0"
version = "0.52.0"
dependencies = [
"ahash",
"anyhow",
@ -3572,7 +3572,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.49.0"
version = "0.50.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.133.0"
version = "0.134.0"
[lib]
name = "swc"

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.7.0"
version = "0.8.0"
[[bin]]
name = "swc"
@ -17,7 +17,7 @@ anyhow = "1.0.53"
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
walkdir = "2"
rayon = "1"
swc = { version = "0.133.0", path = "../swc" }
swc = { version = "0.134.0", path = "../swc" }
swc_common = { version = "0.17.5", path = "../swc_common" }
relative-path = "1.6.1"
serde = { version = "1", features = ["derive"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.51.0"
version = "0.52.0"
[package.metadata.docs.rs]
all-features = true
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
[dev-dependencies]
pretty_assertions = "0.7.2"
swc = {version = "0.133.0", path = "../swc"}
swc = {version = "0.134.0", path = "../swc"}
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms/"}

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.49.0"
version = "0.50.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.61.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.51.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.52.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.4.0", path = "../swc_timer"}
tracing = "0.1.29"