chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-13 15:01:25 +09:00
parent 6d132ca076
commit b30586ba7a
5 changed files with 15 additions and 9 deletions

View File

@ -25,6 +25,12 @@
- **(es/lints)** Add `allow` config for `no-console` rule (#3517) ([286b6c8](https://github.com/swc-project/swc/commit/286b6c804fc9f4b12065eb848be56d0a58230cf2))
### Performance
- **(es/optimization)** Replace `map_with_mut` with proper implementation (#3539) ([6d132ca](https://github.com/swc-project/swc/commit/6d132ca0765a46b39a6844b7de2e7f2655f7dd1b))
## [1.2.139] - 2022-02-12
### Bug Fixes

6
Cargo.lock generated
View File

@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swc"
version = "0.124.4"
version = "0.124.5"
dependencies = [
"ahash",
"anyhow",
@ -3031,7 +3031,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms"
version = "0.116.2"
version = "0.116.3"
dependencies = [
"pretty_assertions",
"sourcemap",
@ -3153,7 +3153,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_optimization"
version = "0.86.0"
version = "0.86.1"
dependencies = [
"ahash",
"dashmap",

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.4"
version = "0.124.5"
[lib]
name = "swc"
@ -55,7 +55,7 @@ swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = [
swc_ecma_minifier = {version = "0.73.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.89.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.116.2", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = {version = "0.116.3", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -65,7 +65,7 @@ swc_ecma_transforms = {version = "0.116.2", path = "../swc_ecma_transforms", fea
]}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.2", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_transforms_optimization = {version = "0.86.1", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.1", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.113.2", path = "../swc_ecmascript"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.116.2"
version = "0.116.3"
[package.metadata.docs.rs]
all-features = true
@ -30,7 +30,7 @@ swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.2", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.77.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_optimization = {version = "0.86.1", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_proposal = {version = "0.76.0", path = "../swc_ecma_transforms_proposal", optional = true}
swc_ecma_transforms_react = {version = "0.79.0", path = "../swc_ecma_transforms_react", optional = true}
swc_ecma_transforms_typescript = {version = "0.81.0", path = "../swc_ecma_transforms_typescript", optional = true}

View File

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