chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-02-04 20:21:02 +09:00
parent 397a96a1cf
commit 454d07d973
5 changed files with 12 additions and 9 deletions

View File

@ -43,6 +43,9 @@
- **(es)** Update tsc test suite (#3448) ([8b7c38c](https://github.com/swc-project/swc/commit/8b7c38c80ceeb8fc41ad4c60eb427dab9c06ba6e))
- **(es/parser)** Fix crlf (#3451) ([397a96a](https://github.com/swc-project/swc/commit/397a96a1cf4a0d540db6e766890ed874f7818a65))
## [1.2.136] - 2022-02-03
### Bug Fixes

6
Cargo.lock generated
View File

@ -2612,7 +2612,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.121.3"
version = "0.121.4"
dependencies = [
"ahash",
"anyhow",
@ -2990,7 +2990,7 @@ dependencies = [
[[package]]
name = "swc_ecma_parser"
version = "0.88.1"
version = "0.88.2"
dependencies = [
"either",
"enum_kind",
@ -3311,7 +3311,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.112.2"
version = "0.112.3"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

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.121.3"
version = "0.121.4"
[lib]
name = "swc"
@ -53,7 +53,7 @@ swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transform
swc_ecma_lints = {version = "0.13.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.72.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.1", path = "../swc_ecma_parser"}
swc_ecma_parser = {version = "0.88.2", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.115.1", path = "../swc_ecma_transforms", features = [
"compat",
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.85.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.112.2", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.112.3", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.31.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.1"
version = "0.88.2"
[package.metadata.docs.rs]
all-features = true

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.112.2"
version = "0.112.3"
[package.metadata.docs.rs]
all-features = true
@ -37,7 +37,7 @@ swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.59.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.72.0", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.88.1", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_parser = {version = "0.88.2", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.115.1", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils", optional = true}