chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-06 05:33:56 +00:00
parent 8640c8bd43
commit 0505a09ecd
7 changed files with 23 additions and 20 deletions

View File

@ -47,6 +47,9 @@
- **(html)** Initialize (#4240) ([3e7872c](https://github.com/swc-project/swc/commit/3e7872c8de05ac46ef6ffb99f778ef5b64e47f1b))
- **(html)** Support boolean attributes (#4258) ([8640c8b](https://github.com/swc-project/swc/commit/8640c8bd43a164eb185733b5294342ff01c858f6))
- **(plugin/api)** Expose `swc_ecma_utils` (#4256) ([7bc04a6](https://github.com/swc-project/swc/commit/7bc04a67918374b1b2d02ed5034330cd6dd78d57))
### Miscellaneous Tasks

10
Cargo.lock generated
View File

@ -3719,7 +3719,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3729,7 +3729,7 @@ dependencies = [
[[package]]
name = "swc_html_ast"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"is-macro",
"serde",
@ -3740,7 +3740,7 @@ dependencies = [
[[package]]
name = "swc_html_codegen"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3766,7 +3766,7 @@ dependencies = [
[[package]]
name = "swc_html_parser"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"bitflags",
"lexical",
@ -3781,7 +3781,7 @@ dependencies = [
[[package]]
name = "swc_html_visit"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"swc_atoms",
"swc_common",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.0"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
bench = false
[dependencies]
swc_html_ast = {version = "0.1.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.1.0", path = "../swc_html_codegen"}
swc_html_parser = {version = "0.1.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.1.0", path = "../swc_html_visit"}
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"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.0"
version = "0.2.0"
[lib]
bench = false

View File

@ -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.1.0"
version = "0.2.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.19", path = "../swc_common"}
swc_html_ast = {version = "0.1.0", path = "../swc_html_ast"}
swc_html_ast = {version = "0.2.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.19", path = "../swc_common", features = [
"sourcemap",
]}
swc_html_parser = {version = "0.1.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.1.0", path = "../swc_html_visit"}
swc_html_parser = {version = "0.2.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.2.0", path = "../swc_html_visit"}
testing = {version = "0.19.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.0"
version = "0.2.0"
[lib]
bench = false
@ -20,10 +20,10 @@ bitflags = "1.2.1"
lexical = "6.1.0"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.19", path = "../swc_common"}
swc_html_ast = {version = "0.1.0", path = "../swc_html_ast"}
swc_html_ast = {version = "0.2.0", path = "../swc_html_ast"}
[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_html_visit = {version = "0.1.0", path = "../swc_html_visit"}
swc_html_visit = {version = "0.2.0", path = "../swc_html_visit"}
testing = {version = "0.19.0", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.0"
version = "0.2.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.19", path = "../swc_common"}
swc_html_ast = {version = "0.1.0", path = "../swc_html_ast"}
swc_html_ast = {version = "0.2.0", path = "../swc_html_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"}