chore: Publish crates

This commit is contained in:
Donny 2022-01-30 12:36:38 +09:00
parent 9dec9236f7
commit a94f1ddb6f
4 changed files with 8 additions and 5 deletions

View File

@ -29,6 +29,9 @@
- **(css/parser)** Improve selector parser (#3386) ([c73835b](https://github.com/swc-project/swc/commit/c73835bfebe56518e107a3666fe95ca649d33a24))
- **(es/lints)** Implement `no-debugger` rule (#3398) ([9dec923](https://github.com/swc-project/swc/commit/9dec9236f7b3c95c803571404d7abae71e173936))
- **(es/minifier)** Implement `drop_console` (#3392) ([91d7800](https://github.com/swc-project/swc/commit/91d78000ea445575f9ac30d0f36299ab4f0cbf5c))
### Miscellaneous Tasks

4
Cargo.lock generated
View File

@ -2611,7 +2611,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.119.8"
version = "0.119.9"
dependencies = [
"ahash",
"anyhow",
@ -2919,7 +2919,7 @@ dependencies = [
[[package]]
name = "swc_ecma_lints"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"auto_impl",
"parking_lot",

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.119.8"
version = "0.119.9"
[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.11.0", path = "../swc_ecma_lints"}
swc_ecma_lints = {version = "0.11.1", 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.4", 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.11.0"
version = "0.11.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]