mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
chore: Publish crates
This commit is contained in:
parent
64237fa7fb
commit
629ed78ad2
@ -14,6 +14,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- **(html/ast)** Add `raw` to attributes (#5208) ([64237fa](https://github.com/swc-project/swc/commit/64237fa7fb9c95030f92892143f476c2573bed75))
|
||||||
|
|
||||||
|
|
||||||
- **(plugin)** Pass `unresolved_mark` to plugins (#5212) ([92c0153](https://github.com/swc-project/swc/commit/92c0153cb56a6b3b7d6503216a14d5ed78df71dc))
|
- **(plugin)** Pass `unresolved_mark` to plugins (#5212) ([92c0153](https://github.com/swc-project/swc/commit/92c0153cb56a6b3b7d6503216a14d5ed78df71dc))
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -3927,7 +3927,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html"
|
name = "swc_html"
|
||||||
version = "0.43.0"
|
version = "0.44.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_html_ast",
|
"swc_html_ast",
|
||||||
"swc_html_codegen",
|
"swc_html_codegen",
|
||||||
@ -3938,7 +3938,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_ast"
|
name = "swc_html_ast"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"is-macro",
|
"is-macro",
|
||||||
"serde",
|
"serde",
|
||||||
@ -3949,7 +3949,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_codegen"
|
name = "swc_html_codegen"
|
||||||
version = "0.25.0"
|
version = "0.26.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"auto_impl",
|
"auto_impl",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -3977,7 +3977,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_minifier"
|
name = "swc_html_minifier"
|
||||||
version = "0.40.0"
|
version = "0.41.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"serde",
|
"serde",
|
||||||
@ -4004,7 +4004,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_parser"
|
name = "swc_html_parser"
|
||||||
version = "0.22.1"
|
version = "0.23.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"serde",
|
"serde",
|
||||||
@ -4030,7 +4030,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_visit"
|
name = "swc_html_visit"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html"
|
name = "swc_html"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.43.0"
|
version = "0.44.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -19,8 +19,8 @@ bench = false
|
|||||||
minifier = ["swc_html_minifier"]
|
minifier = ["swc_html_minifier"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_html_ast = {version = "0.19.0", path = "../swc_html_ast"}
|
swc_html_ast = {version = "0.20.0", path = "../swc_html_ast"}
|
||||||
swc_html_codegen = {version = "0.25.0", path = "../swc_html_codegen"}
|
swc_html_codegen = {version = "0.26.0", path = "../swc_html_codegen"}
|
||||||
swc_html_minifier = {version = "0.40.0", path = "../swc_html_minifier", optional = true}
|
swc_html_minifier = {version = "0.41.0", path = "../swc_html_minifier", optional = true}
|
||||||
swc_html_parser = {version = "0.22.0", path = "../swc_html_parser"}
|
swc_html_parser = {version = "0.23.0", path = "../swc_html_parser"}
|
||||||
swc_html_visit = {version = "0.19.0", path = "../swc_html_visit"}
|
swc_html_visit = {version = "0.20.0", path = "../swc_html_visit"}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_ast"
|
name = "swc_html_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_codegen"
|
name = "swc_html_codegen"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.25.0"
|
version = "0.26.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -21,7 +21,7 @@ bitflags = "1.3.2"
|
|||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
|
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
|
||||||
swc_common = { version = "0.24.0", path = "../swc_common" }
|
swc_common = { version = "0.24.0", path = "../swc_common" }
|
||||||
swc_html_ast = { version = "0.19.0", path = "../swc_html_ast" }
|
swc_html_ast = { version = "0.20.0", path = "../swc_html_ast" }
|
||||||
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
|
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
|
||||||
swc_html_utils = { version = "0.7.0", path = "../swc_html_utils" }
|
swc_html_utils = { version = "0.7.0", path = "../swc_html_utils" }
|
||||||
|
|
||||||
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.7.0", path = "../swc_html_utils" }
|
|||||||
swc_common = { version = "0.24.0", path = "../swc_common", features = [
|
swc_common = { version = "0.24.0", path = "../swc_common", features = [
|
||||||
"sourcemap",
|
"sourcemap",
|
||||||
] }
|
] }
|
||||||
swc_html_parser = { version = "0.22.0", path = "../swc_html_parser" }
|
swc_html_parser = { version = "0.23.0", path = "../swc_html_parser" }
|
||||||
swc_html_visit = { version = "0.19.0", path = "../swc_html_visit" }
|
swc_html_visit = { version = "0.20.0", path = "../swc_html_visit" }
|
||||||
testing = { version = "0.26.0", path = "../testing" }
|
testing = { version = "0.26.0", path = "../testing" }
|
||||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_minifier"
|
name = "swc_html_minifier"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.40.0"
|
version = "0.41.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -32,10 +32,10 @@ swc_ecma_parser = { version = "0.112.0", path = "../swc_ecma_parser" }
|
|||||||
swc_ecma_transforms_base = { version = "0.98.0", path = "../swc_ecma_transforms_base" }
|
swc_ecma_transforms_base = { version = "0.98.0", path = "../swc_ecma_transforms_base" }
|
||||||
swc_ecma_minifier = { version = "0.137.0", path = "../swc_ecma_minifier" }
|
swc_ecma_minifier = { version = "0.137.0", path = "../swc_ecma_minifier" }
|
||||||
swc_ecma_visit = { version = "0.71.0", path = "../swc_ecma_visit" }
|
swc_ecma_visit = { version = "0.71.0", path = "../swc_ecma_visit" }
|
||||||
swc_html_ast = { version = "0.19.0", path = "../swc_html_ast" }
|
swc_html_ast = { version = "0.20.0", path = "../swc_html_ast" }
|
||||||
swc_html_codegen = { version = "0.25.0", path = "../swc_html_codegen" }
|
swc_html_codegen = { version = "0.26.0", path = "../swc_html_codegen" }
|
||||||
swc_html_visit = { version = "0.19.0", path = "../swc_html_visit" }
|
swc_html_visit = { version = "0.20.0", path = "../swc_html_visit" }
|
||||||
swc_html_parser = { version = "0.22.0", path = "../swc_html_parser" }
|
swc_html_parser = { version = "0.23.0", path = "../swc_html_parser" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
testing = { version = "0.26.0", path = "../testing" }
|
testing = { version = "0.26.0", path = "../testing" }
|
||||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_parser"
|
name = "swc_html_parser"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.22.1"
|
version = "0.23.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -21,14 +21,14 @@ debug = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
|
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
|
||||||
swc_common = { version = "0.24.0", path = "../swc_common" }
|
swc_common = { version = "0.24.0", path = "../swc_common" }
|
||||||
swc_html_ast = { version = "0.19.0", path = "../swc_html_ast" }
|
swc_html_ast = { version = "0.20.0", path = "../swc_html_ast" }
|
||||||
swc_html_utils = { version = "0.7.0", path = "../swc_html_utils" }
|
swc_html_utils = { version = "0.7.0", path = "../swc_html_utils" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3"
|
criterion = "0.3"
|
||||||
serde = "1.0.127"
|
serde = "1.0.127"
|
||||||
serde_json = "1.0.66"
|
serde_json = "1.0.66"
|
||||||
swc_html_visit = { version = "0.19.0", path = "../swc_html_visit" }
|
swc_html_visit = { version = "0.20.0", path = "../swc_html_visit" }
|
||||||
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
|
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
|
||||||
testing = { version = "0.26.0", path = "../testing" }
|
testing = { version = "0.26.0", path = "../testing" }
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_visit"
|
name = "swc_html_visit"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -23,5 +23,5 @@ path = []
|
|||||||
serde = {version = "1", optional = true}
|
serde = {version = "1", optional = true}
|
||||||
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.24.0", path = "../swc_common"}
|
swc_common = {version = "0.24.0", path = "../swc_common"}
|
||||||
swc_html_ast = {version = "0.19.0", path = "../swc_html_ast"}
|
swc_html_ast = {version = "0.20.0", path = "../swc_html_ast"}
|
||||||
swc_visit = {version = "0.5.0", path = "../swc_visit"}
|
swc_visit = {version = "0.5.0", path = "../swc_visit"}
|
||||||
|
Loading…
Reference in New Issue
Block a user