chore: Publish crates

This commit is contained in:
Donny 2022-01-03 05:55:39 +09:00
parent 52961804d1
commit cb13512e84
5 changed files with 12 additions and 9 deletions

View File

@ -38,6 +38,9 @@
- **(es/ast)** Add `rkyv` support (#3166) ([bf751cb](https://github.com/swc-project/swc/commit/bf751cb6905c7520f0846b9f0a6f4f44edecbdb3))
- **(es/codegen)** Make the output for empty objects and empty statements pretty (#3171) ([5296180](https://github.com/swc-project/swc/commit/52961804d19c413c09ff4e08c327647ffc3d0bea))
- **(es/diff)** Add a internal CLI program for debugging minifier (#3168) ([1aa55e6](https://github.com/swc-project/swc/commit/1aa55e616a7bc2ffa791600e908ddb10a4009e7b))
### Miscellaneous Tasks

6
Cargo.lock generated
View File

@ -2421,7 +2421,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.101.3"
version = "0.101.4"
dependencies = [
"ahash",
"anyhow",
@ -2675,7 +2675,7 @@ dependencies = [
[[package]]
name = "swc_ecma_codegen"
version = "0.84.1"
version = "0.84.2"
dependencies = [
"bitflags",
"memchr",
@ -3147,7 +3147,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.100.2"
version = "0.100.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.101.3"
version = "0.101.4"
[lib]
name = "swc"
@ -55,7 +55,7 @@ sourcemap = "6"
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = {version = "0.15.0", path = "../swc_common", features = ["sourcemap", "concurrent"]}
swc_ecma_ast = {version = "0.60.5", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen"}
swc_ecma_codegen = {version = "0.84.2", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.43.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.2.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
@ -75,7 +75,7 @@ swc_ecma_transforms_compat = {version = "0.60.0", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.74.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.57.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.100.2", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.100.3", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.2.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.22.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"]
license = "Apache-2.0"
name = "swc_ecma_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.84.1"
version = "0.84.2"
[dependencies]
bitflags = "1"

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.100.2"
version = "0.100.3"
[package.metadata.docs.rs]
all-features = true
@ -34,7 +34,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = {version = "0.60.5", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_codegen = {version = "0.84.2", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.61.0", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.82.7", path = "../swc_ecma_parser", optional = true, default-features = false}