Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Oct 19, 2022
1 parent 1b0dad1 commit 62a9405
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 27 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions crates/swc_html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"}
2 changes: 1 addition & 1 deletion crates/swc_html_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_html_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -21,14 +21,14 @@ 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" }

[dev-dependencies]
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 changes: 5 additions & 5 deletions crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_html_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_html_visit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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" }

0 comments on commit 62a9405

Please sign in to comment.