mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
chore: Publish crates
This commit is contained in:
parent
1b0dad1e84
commit
62a9405acf
@ -14,6 +14,9 @@
|
||||
- **(es/minifier)** Remove wrong rule (#6201) ([842abd4](https://github.com/swc-project/swc/commit/842abd45759a31e9b6ef2b3a0679dee3ad335791))
|
||||
|
||||
|
||||
- **(html/ast)** Fix compilation (#6211) ([1b0dad1](https://github.com/swc-project/swc/commit/1b0dad1e845b2a648103383be6d952e5997d0387))
|
||||
|
||||
|
||||
- **(html/minifier)** Avoid `;` at the end of js (#6188) ([5571c0c](https://github.com/swc-project/swc/commit/5571c0c2029577929ec547948319497144c34c28))
|
||||
|
||||
|
||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -4045,7 +4045,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.92.0"
|
||||
version = "0.92.1"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -4056,7 +4056,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_ast"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
dependencies = [
|
||||
"bytecheck",
|
||||
"is-macro",
|
||||
@ -4069,7 +4069,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_codegen"
|
||||
version = "0.37.0"
|
||||
version = "0.37.1"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -4097,7 +4097,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.89.0"
|
||||
version = "0.89.1"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"once_cell",
|
||||
@ -4127,7 +4127,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_parser"
|
||||
version = "0.34.0"
|
||||
version = "0.34.1"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"serde",
|
||||
@ -4154,7 +4154,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_visit"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"swc_atoms",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.92.0"
|
||||
version = "0.92.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -19,8 +19,8 @@ bench = false
|
||||
minifier = ["swc_html_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.28.0", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.37.0", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.89.0", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.34.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.28.0", path = "../swc_html_visit"}
|
||||
swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.37.1", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.89.1", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.34.1", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.28.1", path = "../swc_html_visit"}
|
||||
|
@ -9,7 +9,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.37.0"
|
||||
version = "0.37.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -21,7 +21,7 @@ bitflags = "1.3.2"
|
||||
rustc-hash = "1.1.0"
|
||||
swc_atoms = { version = "0.4.23", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.29.10", path = "../swc_common" }
|
||||
swc_html_ast = { version = "0.28.0", path = "../swc_html_ast" }
|
||||
swc_html_ast = { version = "0.28.1", path = "../swc_html_ast" }
|
||||
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
|
||||
swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
|
||||
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
swc_common = { version = "0.29.10", path = "../swc_common", features = [
|
||||
"sourcemap",
|
||||
] }
|
||||
swc_html_parser = { version = "0.34.0", path = "../swc_html_parser" }
|
||||
swc_html_visit = { version = "0.28.0", path = "../swc_html_visit" }
|
||||
swc_html_parser = { version = "0.34.1", path = "../swc_html_parser" }
|
||||
swc_html_visit = { version = "0.28.1", path = "../swc_html_visit" }
|
||||
testing = { version = "0.31.10", path = "../testing" }
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.89.0"
|
||||
version = "0.89.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -32,11 +32,11 @@ swc_ecma_minifier = { version = "0.159.37", path = "../swc_ecma_minifier"
|
||||
swc_ecma_parser = { version = "0.122.15", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.111.28", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "0.28.0", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "0.37.0", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.34.0", path = "../swc_html_parser" }
|
||||
swc_html_ast = { version = "0.28.1", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "0.37.1", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.34.1", path = "../swc_html_parser" }
|
||||
swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
swc_html_visit = { version = "0.28.0", path = "../swc_html_visit" }
|
||||
swc_html_visit = { version = "0.28.1", path = "../swc_html_visit" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.34.0"
|
||||
version = "0.34.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -21,14 +21,14 @@ debug = []
|
||||
[dependencies]
|
||||
swc_atoms = { version = "0.4.23", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.29.10", path = "../swc_common" }
|
||||
swc_html_ast = { version = "0.28.0", path = "../swc_html_ast" }
|
||||
swc_html_ast = { version = "0.28.1", path = "../swc_html_ast" }
|
||||
swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
serde = "1.0.127"
|
||||
serde_json = "1.0.66"
|
||||
swc_html_visit = { version = "0.28.0", path = "../swc_html_visit" }
|
||||
swc_html_visit = { version = "0.28.1", path = "../swc_html_visit" }
|
||||
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
|
||||
testing = { version = "0.31.10", path = "../testing" }
|
||||
|
||||
|
@ -9,7 +9,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_visit"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.28.0"
|
||||
version = "0.28.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -26,5 +26,5 @@ path = []
|
||||
serde = { version = "1", optional = true }
|
||||
swc_atoms = { version = "0.4.23", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.29.10", path = "../swc_common" }
|
||||
swc_html_ast = { version = "0.28.0", path = "../swc_html_ast" }
|
||||
swc_html_ast = { version = "0.28.1", path = "../swc_html_ast" }
|
||||
swc_visit = { version = "0.5.3", path = "../swc_visit" }
|
||||
|
Loading…
Reference in New Issue
Block a user