chore: Publish crates

This commit is contained in:
Donny 2022-01-26 20:39:45 +09:00
parent 987213797f
commit bcc3ae86ae
6 changed files with 15 additions and 11 deletions

View File

@ -68,6 +68,9 @@
- **(es/codegen)** Emit comments of `Module` and `Script` (#3358) ([fcb7288](https://github.com/swc-project/swc/commit/fcb7288eb66e027fa7278b8f028e4486059241cd))
- **(es/lints)** Implement "no-console" rule (#3269) ([9872137](https://github.com/swc-project/swc/commit/987213797f71f9b5e0a0ac19edfbd18fe96a7ce5))
- **(es/minifier)** Handle array literals in `sequences` (#3348) ([8007b2d](https://github.com/swc-project/swc/commit/8007b2dc9338e34a1e9780606fd35181890af990))

9
Cargo.lock generated
View File

@ -2652,7 +2652,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.118.0"
version = "0.119.0"
dependencies = [
"ahash",
"anyhow",
@ -2976,11 +2976,12 @@ dependencies = [
[[package]]
name = "swc_ecma_lints"
version = "0.10.0"
version = "0.11.0"
dependencies = [
"auto_impl",
"parking_lot",
"rayon",
"serde",
"swc_atoms",
"swc_common",
"swc_ecma_ast",
@ -3402,7 +3403,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"ahash",
"anyhow",
@ -3591,7 +3592,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.34.0"
version = "0.35.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.118.0"
version = "0.119.0"
[lib]
name = "swc"
@ -50,7 +50,7 @@ swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.10.0", path = "../swc_ecma_lints"}
swc_ecma_lints = {version = "0.11.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.71.1", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.10.0"
version = "0.11.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

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.36.0"
version = "0.37.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.118.0", path = "../swc"}
swc = {version = "0.119.0", path = "../swc"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.114.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.34.0"
version = "0.35.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.57.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.36.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.37.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.4.0", path = "../swc_timer"}
tracing = "0.1.29"