chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-02-07 11:12:21 +09:00
parent 5812c3c10f
commit f1f9c1ce4d
5 changed files with 12 additions and 9 deletions

View File

@ -20,6 +20,9 @@
- **(es/fixer)** Handle more expressions in the super class position (#3452) ([032f397](https://github.com/swc-project/swc/commit/032f397b52415378ede985be35713a3482093958))
- **(es/minifier)** Fix `codemirror` (#3462) ([5812c3c](https://github.com/swc-project/swc/commit/5812c3c10fc224fbb33a17302491c5f7c2bd0a0b))
- **(es/modules)** Allow using a dynamic import with an expression from another import (#3450) ([745604b](https://github.com/swc-project/swc/commit/745604b26d9151732d2572307dbeb22b2d10ca66))

6
Cargo.lock generated
View File

@ -2612,7 +2612,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.121.6"
version = "0.121.7"
dependencies = [
"ahash",
"anyhow",
@ -2957,7 +2957,7 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.72.0"
version = "0.72.1"
dependencies = [
"ahash",
"ansi_term",
@ -3311,7 +3311,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.112.5"
version = "0.112.6"
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.6"
version = "0.121.7"
[lib]
name = "swc"
@ -52,7 +52,7 @@ swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transforms"}
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_minifier = {version = "0.72.1", path = "../swc_ecma_minifier"}
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.3", path = "../swc_ecma_transforms", features = [
@ -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.5", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.112.6", 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", "src/lists/*.json"]
license = "Apache-2.0"
name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.72.0"
version = "0.72.1"
[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.5"
version = "0.112.6"
[package.metadata.docs.rs]
all-features = true
@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
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_minifier = {version = "0.72.1", path = "../swc_ecma_minifier", optional = true}
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.3", path = "../swc_ecma_transforms", optional = true}