mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
chore: Publish crates
This commit is contained in:
parent
91d78000ea
commit
0e7d525352
@ -22,6 +22,9 @@
|
||||
|
||||
- **(css/parser)** Improve selector parser (#3386) ([c73835b](https://github.com/swc-project/swc/commit/c73835bfebe56518e107a3666fe95ca649d33a24))
|
||||
|
||||
|
||||
- **(es/minifier)** Implement `drop_console` (#3392) ([91d7800](https://github.com/swc-project/swc/commit/91d78000ea445575f9ac30d0f36299ab4f0cbf5c))
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
||||
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2652,7 +2652,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.119.6"
|
||||
version = "0.119.7"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3013,7 +3013,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "0.71.3"
|
||||
version = "0.71.4"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3367,7 +3367,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.111.8"
|
||||
version = "0.111.9"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
|
@ -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.119.6"
|
||||
version = "0.119.7"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -52,7 +52,7 @@ swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen"}
|
||||
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
|
||||
swc_ecma_lints = {version = "0.11.0", path = "../swc_ecma_lints"}
|
||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
||||
swc_ecma_minifier = {version = "0.71.3", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_minifier = {version = "0.71.4", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_preset_env = {version = "0.87.1", path = "../swc_ecma_preset_env"}
|
||||
swc_ecma_transforms = {version = "0.114.3", path = "../swc_ecma_transforms", features = [
|
||||
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.7", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.84.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.111.8", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.111.9", 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"}
|
||||
|
@ -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.71.3"
|
||||
version = "0.71.4"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.111.8"
|
||||
version = "0.111.9"
|
||||
|
||||
[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.89.1", 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.71.3", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_minifier = {version = "0.71.4", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||
swc_ecma_preset_env = {version = "0.87.1", path = "../swc_ecma_preset_env", optional = true}
|
||||
swc_ecma_transforms = {version = "0.114.3", path = "../swc_ecma_transforms", optional = true}
|
||||
|
Loading…
Reference in New Issue
Block a user