mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 09:38:16 +03:00
chore: Publish crates
This commit is contained in:
parent
ee108af3d0
commit
6c50ae6b0d
@ -17,6 +17,9 @@
|
||||
|
||||
|
||||
|
||||
- **(html)** Add raw fields (#4281) ([ee108af](https://github.com/swc-project/swc/commit/ee108af3d0bf81cfa101d8b52ee4d072705b04f4))
|
||||
|
||||
|
||||
- **(plugin)** Implement `Copy` and `Clone` for the comment proxy (#4280) ([3c4e520](https://github.com/swc-project/swc/commit/3c4e5204ecb51dd67c73ae5556c886b303891a23))
|
||||
|
||||
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3719,7 +3719,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -3729,7 +3729,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_ast"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"is-macro",
|
||||
"serde",
|
||||
@ -3740,7 +3740,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_codegen"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -3766,7 +3766,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_parser"
|
||||
version = "0.2.2"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"lexical",
|
||||
@ -3782,7 +3782,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_visit"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.2.0", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.2.0", path = "../swc_html_codegen"}
|
||||
swc_html_parser = {version = "0.2.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.2.0", path = "../swc_html_visit"}
|
||||
swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.3.0", path = "../swc_html_codegen"}
|
||||
swc_html_parser = {version = "0.3.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.3.0", path = "../swc_html_visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -17,13 +17,13 @@ auto_impl = "0.5.0"
|
||||
bitflags = "1.3.2"
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = { version = "0.17.20", path = "../swc_common"}
|
||||
swc_html_ast = {version = "0.2.0", path = "../swc_html_ast"}
|
||||
swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"}
|
||||
swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_common = { version = "0.17.20", path = "../swc_common", features = [
|
||||
"sourcemap",
|
||||
]}
|
||||
swc_html_parser = {version = "0.2.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.2.0", path = "../swc_html_visit"}
|
||||
swc_html_parser = {version = "0.3.0", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.3.0", path = "../swc_html_visit"}
|
||||
testing = {version = "0.19.0", path = "../testing"}
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.2.2"
|
||||
version = "0.3.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -26,10 +26,10 @@ serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.17.20", path = "../swc_common" }
|
||||
swc_html_ast = { version = "0.2.0", path = "../swc_html_ast" }
|
||||
swc_html_ast = { version = "0.3.0", path = "../swc_html_ast" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde = "1.0.127"
|
||||
serde_json = "1.0.66"
|
||||
swc_html_visit = { version = "0.2.0", path = "../swc_html_visit" }
|
||||
swc_html_visit = { version = "0.3.0", path = "../swc_html_visit" }
|
||||
testing = { version = "0.19.0", path = "../testing" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_visit"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -14,5 +14,5 @@ bench = false
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||
swc_common = { version = "0.17.20", path = "../swc_common"}
|
||||
swc_html_ast = {version = "0.2.0", path = "../swc_html_ast"}
|
||||
swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
Loading…
Reference in New Issue
Block a user