chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-13 13:58:05 +09:00
parent 286b6c804f
commit da77104db2
4 changed files with 9 additions and 6 deletions

View File

@ -22,6 +22,9 @@
- **(es/lints)** Add this handling support to `no-alert` rule (#3515) ([af82006](https://github.com/swc-project/swc/commit/af8200647bb5f96525bcf3333c7c6889fe69dd5d))
- **(es/lints)** Add `allow` config for `no-console` rule (#3517) ([286b6c8](https://github.com/swc-project/swc/commit/286b6c804fc9f4b12065eb848be56d0a58230cf2))
## [1.2.139] - 2022-02-12
### Bug Fixes

4
Cargo.lock generated
View File

@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.124.3"
version = "0.124.4"
dependencies = [
"ahash",
"anyhow",
@ -2906,7 +2906,7 @@ dependencies = [
[[package]]
name = "swc_ecma_lints"
version = "0.14.4"
version = "0.14.5"
dependencies = [
"ahash",
"auto_impl",

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.124.3"
version = "0.124.4"
[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.90.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.14.3", path = "../swc_ecma_lints"}
swc_ecma_lints = {version = "0.14.5", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.73.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"}
@ -88,7 +88,7 @@ version = "2.0.0"
[dev-dependencies]
rayon = "1"
swc_ecma_lints = {version = "0.14.3", path = "../swc_ecma_lints", features = ["non_critical_lints"]}
swc_ecma_lints = {version = "0.14.5", path = "../swc_ecma_lints", features = ["non_critical_lints"]}
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
testing = {version = "0.18.0", path = "../testing"}
walkdir = "2"

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.14.4"
version = "0.14.5"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]