chore: Publish crates

This commit is contained in:
Donny 2022-01-17 22:41:25 +09:00
parent 89235b8294
commit ba4083959f
5 changed files with 12 additions and 9 deletions

View File

@ -5,6 +5,9 @@
- **(es/compat)** Apply `static_blocks` before `class_properties` (#3292) ([89235b8](https://github.com/swc-project/swc/commit/89235b8294dedb4dd50c85e2a3b3ce41bddac85e))
- **(es/minifier)** Fix analysis of unary expressions (#3286) ([b55ae4b](https://github.com/swc-project/swc/commit/b55ae4b312b5677efeb9f3e9697dc2bcff81e322))

6
Cargo.lock generated
View File

@ -2652,7 +2652,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.116.4"
version = "0.116.5"
dependencies = [
"ahash",
"anyhow",
@ -2888,7 +2888,7 @@ dependencies = [
[[package]]
name = "swc_ecma_ast"
version = "0.65.2"
version = "0.65.3"
dependencies = [
"arbitrary",
"is-macro",
@ -3365,7 +3365,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.110.4"
version = "0.110.5"
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.116.4"
version = "0.116.5"
[lib]
name = "swc"
@ -47,7 +47,7 @@ serde_json = "1"
sourcemap = "6"
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap", "concurrent"]}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.9.0", path = "../swc_ecma_lints"}
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.110.4", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.110.5", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.2"
version = "0.65.3"
[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.110.4"
version = "0.110.5"
[package.metadata.docs.rs]
all-features = true
@ -33,7 +33,7 @@ react = ["swc_ecma_transforms/react"]
typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier", optional = true}