chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-10 06:39:04 +00:00
parent b96eb1ead8
commit 6cf71285a6
9 changed files with 27 additions and 24 deletions

View File

@ -20,6 +20,9 @@
- **(css/codegen)** Skip useless operations if not required (#5802) ([b96eb1e](https://github.com/swc-project/swc/commit/b96eb1ead8eedfeb8c3f392bf89ca5c037f1efcb))
- **(css/minifier)** Setup benchmark (#5800) ([88e59ff](https://github.com/swc-project/swc/commit/88e59ffcda6b0f00fabe80515c80cf4e0563f2bf)) - **(css/minifier)** Setup benchmark (#5800) ([88e59ff](https://github.com/swc-project/swc/commit/88e59ffcda6b0f00fabe80515c80cf4e0563f2bf))

14
Cargo.lock generated
View File

@ -3110,7 +3110,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.22.4" version = "0.22.5"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3157,7 +3157,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.124.1" version = "0.124.2"
dependencies = [ dependencies = [
"swc_css_ast", "swc_css_ast",
"swc_css_codegen", "swc_css_codegen",
@ -3182,7 +3182,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_codegen" name = "swc_css_codegen"
version = "0.121.0" version = "0.121.1"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -3229,7 +3229,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_minifier" name = "swc_css_minifier"
version = "0.86.1" version = "0.86.2"
dependencies = [ dependencies = [
"criterion", "criterion",
"serde", "serde",
@ -3263,7 +3263,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_prefixer" name = "swc_css_prefixer"
version = "0.122.0" version = "0.122.1"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"preset_env_base", "preset_env_base",
@ -3947,7 +3947,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.72.3" version = "0.72.4"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -3999,7 +3999,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.69.3" version = "0.69.4"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"serde", "serde",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_core" name = "swc_core"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.22.4" version = "0.22.5"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -304,10 +304,10 @@ swc_bundler = { optional = true, version = "0.187.2", path
swc_cached = { optional = true, version = "0.3.7", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.7", path = "../swc_cached" }
swc_common = { optional = true, version = "0.28.0", path = "../swc_common" } swc_common = { optional = true, version = "0.28.0", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.111.0", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.111.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.121.0", path = "../swc_css_codegen" } swc_css_codegen = { optional = true, version = "0.121.1", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.86.1", path = "../swc_css_minifier" } swc_css_minifier = { optional = true, version = "0.86.2", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.120.0", path = "../swc_css_parser" } swc_css_parser = { optional = true, version = "0.120.0", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.122.0", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.122.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.108.0", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.108.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.110.0", path = "../swc_css_visit" } swc_css_visit = { optional = true, version = "0.110.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.91.0", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.91.0", path = "../swc_ecma_ast" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css" name = "swc_css"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.124.1" version = "0.124.2"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -20,8 +20,8 @@ minifier = ["swc_css_minifier"]
[dependencies] [dependencies]
swc_css_ast = {version = "0.111.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.111.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.121.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.121.1", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.86.1", path = "../swc_css_minifier", optional = true} swc_css_minifier = {version = "0.86.2", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.120.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.120.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.108.0", path = "../swc_css_utils/"} swc_css_utils = {version = "0.108.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.110.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.110.0", path = "../swc_css_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_codegen" name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.121.0" version = "0.121.1"
[lib] [lib]
bench = false bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_minifier" name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.86.1" version = "0.86.2"
[lib] [lib]
bench = false bench = false
@ -22,7 +22,7 @@ swc_css_visit = { version = "0.110.0", path = "../swc_css_visit" }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
swc_css_codegen = { version = "0.121.0", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.121.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.120.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.120.0", path = "../swc_css_parser" }
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.30.0", path = "../testing" } testing = { version = "0.30.0", path = "../testing" }

View File

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

View File

@ -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.72.3" version = "0.72.4"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.25.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.25.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.33.0", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.33.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.69.3", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.69.4", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.30.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.30.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.25.0", path = "../swc_html_visit"} swc_html_visit = {version = "0.25.0", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
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.69.3" version = "0.69.4"
[lib] [lib]
bench = false bench = false
@ -23,8 +23,8 @@ swc_atoms = { version = "0.4.11", path = "../swc_atoms" }
swc_cached = { version = "0.3.7", path = "../swc_cached" } swc_cached = { version = "0.3.7", path = "../swc_cached" }
swc_common = { version = "0.28.0", path = "../swc_common" } swc_common = { version = "0.28.0", path = "../swc_common" }
swc_css_ast = { version = "0.111.0", path = "../swc_css_ast" } swc_css_ast = { version = "0.111.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.121.0", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.121.1", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.86.1", path = "../swc_css_minifier" } swc_css_minifier = { version = "0.86.2", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.120.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.120.0", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.91.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.91.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.124.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.124.1", path = "../swc_ecma_codegen" }