chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-12 05:09:19 +00:00
parent 19c2ee593d
commit 2a4b4a3792
6 changed files with 17 additions and 14 deletions

View File

@ -20,6 +20,9 @@
- **(es/parser)** Parse types in `CallExpression` inside templates (#6611) ([c44f1d0](https://github.com/swc-project/swc/commit/c44f1d0a7fd31b6c8019e5a17b0f80dab4c9c01c))
- **(html/parser)** Fix parsing of CDATA in the svg context (#6620) ([19c2ee5](https://github.com/swc-project/swc/commit/19c2ee593d1b2c32243dbc5c099f17cea0b9ed26))
- **(node-swc)** Add missing `const_to_let` to the type (#6615) ([7e841a5](https://github.com/swc-project/swc/commit/7e841a5d3061e6ef8b48995bdcd492ffa02b3b8d))
### Features

8
Cargo.lock generated
View File

@ -4159,7 +4159,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.100.2"
version = "0.100.3"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4183,7 +4183,7 @@ dependencies = [
[[package]]
name = "swc_html_codegen"
version = "0.37.21"
version = "0.37.22"
dependencies = [
"auto_impl",
"bitflags",
@ -4211,7 +4211,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.97.2"
version = "0.97.3"
dependencies = [
"criterion",
"once_cell",
@ -4241,7 +4241,7 @@ dependencies = [
[[package]]
name = "swc_html_parser"
version = "0.34.21"
version = "0.34.22"
dependencies = [
"criterion",
"serde",

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.100.2"
version = "0.100.3"
[package.metadata.docs.rs]
all-features = true
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.12", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.21", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.2", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.21", path = "../swc_html_parser"}
swc_html_codegen = {version = "0.37.22", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.3", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.22", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.12", path = "../swc_html_visit"}

View File

@ -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.21"
version = "0.37.22"
[lib]
bench = false
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" }
swc_common = { version = "0.29.20", path = "../swc_common", features = [
"sourcemap",
] }
swc_html_parser = { version = "0.34.21", path = "../swc_html_parser" }
swc_html_parser = { version = "0.34.22", path = "../swc_html_parser" }
swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" }
testing = { version = "0.31.21", path = "../testing" }

View File

@ -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.97.2"
version = "0.97.3"
[lib]
bench = false
@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.123.7", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.10", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.81.4", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.28.12", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.37.21", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.21", path = "../swc_html_parser" }
swc_html_codegen = { version = "0.37.22", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.22", path = "../swc_html_parser" }
swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" }
swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" }

View File

@ -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.21"
version = "0.34.22"
[lib]
bench = false