chore: Publish crates

This commit is contained in:
SWC Bot 2022-07-15 11:25:41 +00:00
parent b65a16c7aa
commit d70687f4d7
13 changed files with 57 additions and 54 deletions

View File

@ -14,6 +14,9 @@
- **(css/ast)** Make `raw` optional (#5211) ([b65a16c](https://github.com/swc-project/swc/commit/b65a16c7aa58bca57ad861ca015867f89fb80a79))
- **(html/ast)** Add `raw` to attributes (#5208) ([64237fa](https://github.com/swc-project/swc/commit/64237fa7fb9c95030f92892143f476c2573bed75))

22
Cargo.lock generated
View File

@ -3147,7 +3147,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.112.0"
version = "0.113.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3159,7 +3159,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.99.0"
version = "0.100.0"
dependencies = [
"is-macro",
"serde",
@ -3170,7 +3170,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.109.0"
version = "0.110.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3198,7 +3198,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"auto_impl",
"parking_lot",
@ -3217,7 +3217,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.74.0"
version = "0.75.0"
dependencies = [
"serde",
"swc_atoms",
@ -3232,7 +3232,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.108.0"
version = "0.109.0"
dependencies = [
"bitflags",
"criterion",
@ -3249,7 +3249,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.108.0"
version = "0.109.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3263,7 +3263,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.96.0"
version = "0.97.0"
dependencies = [
"once_cell",
"serde",
@ -3276,7 +3276,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.98.1"
version = "0.99.0"
dependencies = [
"serde",
"swc_atoms",
@ -3927,7 +3927,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.45.0"
version = "0.46.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3977,7 +3977,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"once_cell",
"serde",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.112.0"
version = "0.113.0"
[package.metadata.docs.rs]
all-features = true
@ -19,9 +19,9 @@ bench = false
minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.99.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.109.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.74.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.108.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.96.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.98.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.100.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.110.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.75.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.109.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.97.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.99.0", path = "../swc_css_visit"}

View File

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

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.109.0"
version = "0.110.0"
[lib]
bench = false
@ -19,13 +19,13 @@ rustc-hash = "1.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.24.0", path = "../swc_common" }
swc_css_ast = { version = "0.99.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.100.0", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" }
[dev-dependencies]
swc_common = { version = "0.24.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.108.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.98.0", path = "../swc_css_visit" }
swc_css_parser = { version = "0.109.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.99.0", path = "../swc_css_visit" }
testing = { version = "0.26.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.18.0"
version = "0.19.0"
[lib]
bench = false
@ -20,11 +20,11 @@ serde = {version = "1.0.133", features = ["derive"]}
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_cached = {version = "0.1.0", path = "../swc_cached"}
swc_common = { version = "0.24.0", path = "../swc_common"}
swc_css_ast = {version = "0.99.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.98.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.100.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.99.0", path = "../swc_css_visit"}
thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = {version = "0.108.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.109.0", path = "../swc_css_parser"}
testing = {version = "0.26.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.74.0"
version = "0.75.0"
[lib]
bench = false
@ -16,11 +16,11 @@ bench = false
serde = "1.0.118"
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.24.0", path = "../swc_common"}
swc_css_ast = {version = "0.99.0", path = "../swc_css_ast"}
swc_css_utils = { version = "0.96.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.98.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.100.0", path = "../swc_css_ast"}
swc_css_utils = { version = "0.97.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.99.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.109.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.108.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.110.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.109.0", path = "../swc_css_parser"}
testing = {version = "0.26.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.108.0"
version = "0.109.0"
[lib]
bench = false
@ -21,12 +21,12 @@ lexical = "6.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.24.0", path = "../swc_common" }
swc_css_ast = { version = "0.99.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.100.0", path = "../swc_css_ast" }
[dev-dependencies]
criterion = "0.3"
serde_json = "1.0.66"
swc_css_visit = { version = "0.98.0", path = "../swc_css_visit" }
swc_css_visit = { version = "0.99.0", path = "../swc_css_visit" }
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
testing = { version = "0.26.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.108.0"
version = "0.109.0"
[lib]
bench = false
@ -15,11 +15,11 @@ bench = false
[dependencies]
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.24.0", path = "../swc_common" }
swc_css_ast = { version = "0.99.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.96.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.98.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.100.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.97.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.99.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.109.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.108.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.110.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.109.0", path = "../swc_css_parser" }
testing = { version = "0.26.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.96.0"
version = "0.97.0"
[lib]
bench = false
@ -18,5 +18,5 @@ 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.24.0", path = "../swc_common" }
swc_css_ast = { version = "0.99.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.98.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.100.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.99.0", path = "../swc_css_visit" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.98.1"
version = "0.99.0"
[package.metadata.docs.rs]
all-features = true
@ -23,5 +23,5 @@ path = []
serde = {version = "1", optional = true}
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.24.0", path = "../swc_common"}
swc_css_ast = {version = "0.99.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.100.0", path = "../swc_css_ast"}
swc_visit = {version = "0.5.0", path = "../swc_visit"}

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.45.0"
version = "0.46.0"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.20.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.27.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.42.0", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.43.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.24.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.20.0", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.42.0"
version = "0.43.0"
[lib]
bench = false
@ -22,10 +22,10 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
swc_cached = { version = "0.1.0", path = "../swc_cached" }
swc_common = { version = "0.24.0", path = "../swc_common" }
swc_css_ast = { version = "0.99.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.109.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.108.0", path = "../swc_css_parser" }
swc_css_minifier = { version = "0.74.0", path = "../swc_css_minifier" }
swc_css_ast = { version = "0.100.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.110.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.109.0", path = "../swc_css_parser" }
swc_css_minifier = { version = "0.75.0", path = "../swc_css_minifier" }
swc_ecma_ast = { version = "0.85.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.116.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.112.0", path = "../swc_ecma_parser" }