chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-21 08:24:14 +00:00
parent 10cdbed05e
commit 6e560644e5
11 changed files with 38 additions and 35 deletions

View File

@ -8,6 +8,9 @@
- **(cli)** Add missing comma (#5902) ([ccca6d0](https://github.com/swc-project/swc/commit/ccca6d0a8866b9e34e1778e176ed47d19e30be78))
- **(css/parser)** Fix infinite loop about `@import` and `layer` (#5919) ([10cdbed](https://github.com/swc-project/swc/commit/10cdbed05e3d0f2430a21a7f3c6a185f56ea0861))
- **(es/minifier)** Remove more pure calls (#5900) ([83c7887](https://github.com/swc-project/swc/commit/83c7887600bcb391203911f3c82b62e16a217120))
### Features

18
Cargo.lock generated
View File

@ -3111,7 +3111,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.25.5"
version = "0.25.6"
dependencies = [
"binding_macros",
"once_cell",
@ -3158,7 +3158,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.126.0"
version = "0.126.1"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3183,7 +3183,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.123.0"
version = "0.123.1"
dependencies = [
"auto_impl",
"bitflags",
@ -3211,7 +3211,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.32.0"
version = "0.32.1"
dependencies = [
"auto_impl",
"parking_lot",
@ -3230,7 +3230,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.88.0"
version = "0.88.1"
dependencies = [
"criterion",
"serde",
@ -3247,7 +3247,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.122.0"
version = "0.122.1"
dependencies = [
"bitflags",
"criterion",
@ -3264,7 +3264,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.124.0"
version = "0.124.1"
dependencies = [
"once_cell",
"preset_env_base",
@ -3949,7 +3949,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.76.4"
version = "0.76.5"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4001,7 +4001,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.73.4"
version = "0.73.5"
dependencies = [
"criterion",
"once_cell",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.25.5"
version = "0.25.6"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -323,10 +323,10 @@ swc_bundler = { optional = true, version = "0.188.4", path
swc_cached = { optional = true, version = "0.3.11", path = "../swc_cached" }
swc_common = { optional = true, version = "0.28.8", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.113.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.123.0", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.88.0", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.122.0", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.124.0", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.123.1", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.88.1", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.122.1", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.124.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.110.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.112.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.92.0", path = "../swc_ecma_ast" }

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.126.0"
version = "0.126.1"
[package.metadata.docs.rs]
all-features = true
@ -20,8 +20,8 @@ minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.113.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.123.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.88.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.122.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.123.1", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.88.1", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.122.1", path = "../swc_css_parser"}
swc_css_utils = {version = "0.110.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.112.0", path = "../swc_css_visit"}

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.123.0"
version = "0.123.1"
[lib]
bench = false
@ -26,6 +26,6 @@ swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros"
swc_common = { version = "0.28.8", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
swc_css_parser = { version = "0.122.1", path = "../swc_css_parser" }
swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
testing = { version = "0.30.8", 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.32.0"
version = "0.32.1"
[lib]
bench = false
@ -26,5 +26,5 @@ thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
swc_css_parser = { version = "0.122.1", path = "../swc_css_parser" }
testing = { version = "0.30.8", 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.88.0"
version = "0.88.1"
[lib]
bench = false
@ -22,8 +22,8 @@ swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.123.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.123.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.1", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
testing = { version = "0.30.8", 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.122.0"
version = "0.122.1"
[lib]
bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.124.0"
version = "0.124.1"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = { version = "0.110.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.123.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.123.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.1", path = "../swc_css_parser" }
testing = { version = "0.30.8", path = "../testing" }

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.76.4"
version = "0.76.5"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.25.8", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.34.5", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.73.4", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.73.5", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.31.5", path = "../swc_html_parser"}
swc_html_visit = {version = "0.25.8", path = "../swc_html_visit"}

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.73.4"
version = "0.73.5"
[lib]
bench = false
@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_cached = { version = "0.3.11", path = "../swc_cached" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.123.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.88.0", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.123.1", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.88.1", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.122.1", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.92.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.125.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.155.4", path = "../swc_ecma_minifier" }