chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-20 01:50:11 +00:00
parent 2bf24195f2
commit 26b9f1fc23
14 changed files with 66 additions and 63 deletions

View File

@ -14,6 +14,9 @@
- **(css/parser)** Parse more math functions in `@media` (#5904) ([2bf2419](https://github.com/swc-project/swc/commit/2bf24195f2e9803f24f335b637ff9e7ea394402b))
- **(es/minifier)** Drop function identifier in a single pass (#5901) ([aacf7aa](https://github.com/swc-project/swc/commit/aacf7aaf80034509cf20e4b54d87c2e95ae9b3df))
## [1.3.2] - 2022-09-19

24
Cargo.lock generated
View File

@ -3111,7 +3111,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.23.32"
version = "0.24.0"
dependencies = [
"binding_macros",
"once_cell",
@ -3158,7 +3158,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.125.10"
version = "0.126.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3170,7 +3170,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.112.7"
version = "0.113.0"
dependencies = [
"bytecheck",
"is-macro",
@ -3183,7 +3183,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.122.7"
version = "0.123.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3211,7 +3211,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.31.7"
version = "0.32.0"
dependencies = [
"auto_impl",
"parking_lot",
@ -3230,7 +3230,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.87.10"
version = "0.88.0"
dependencies = [
"criterion",
"serde",
@ -3247,7 +3247,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.121.7"
version = "0.122.0"
dependencies = [
"bitflags",
"criterion",
@ -3264,7 +3264,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.123.8"
version = "0.124.0"
dependencies = [
"once_cell",
"preset_env_base",
@ -3282,7 +3282,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.109.7"
version = "0.110.0"
dependencies = [
"once_cell",
"serde",
@ -3295,7 +3295,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.111.7"
version = "0.112.0"
dependencies = [
"serde",
"swc_atoms",
@ -3949,7 +3949,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.74.10"
version = "0.75.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4001,7 +4001,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.71.10"
version = "0.72.0"
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.23.32"
version = "0.24.0"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -320,13 +320,13 @@ swc_atoms = { optional = true, version = "0.4.15", path =
swc_bundler = { optional = true, version = "0.187.30", path = "../swc_bundler" }
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.112.7", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.122.7", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.87.10", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.121.7", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.123.8", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.109.7", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.111.7", path = "../swc_css_visit" }
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_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.91.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.124.14", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.40.8", path = "../swc_ecma_loader" }

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.125.10"
version = "0.126.0"
[package.metadata.docs.rs]
all-features = true
@ -19,9 +19,9 @@ bench = false
minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.112.7", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.122.7", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.87.10", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.121.7", path = "../swc_css_parser"}
swc_css_utils = {version = "0.109.7", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.111.7", path = "../swc_css_visit"}
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_utils = {version = "0.110.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.112.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.112.7"
version = "0.113.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.122.7"
version = "0.123.0"
[lib]
bench = false
@ -19,13 +19,13 @@ rustc-hash = "1.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" }
[dev-dependencies]
swc_common = { version = "0.28.8", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.121.7", path = "../swc_css_parser" }
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_parser = { version = "0.122.0", 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.31.7"
version = "0.32.0"
[lib]
bench = false
@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] }
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.112.7", path = "../swc_css_ast" }
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.121.7", path = "../swc_css_parser" }
swc_css_parser = { version = "0.122.0", 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.87.10"
version = "0.88.0"
[lib]
bench = false
@ -16,14 +16,14 @@ bench = false
serde = "1.0.118"
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_utils = { version = "0.109.7", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.110.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.122.7", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.121.7", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.123.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.0", 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.121.7"
version = "0.122.0"
[lib]
bench = false
@ -21,12 +21,12 @@ lexical = "6.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
[dev-dependencies]
criterion = "0.3"
serde_json = "1.0.66"
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_visit = { version = "0.112.0", path = "../swc_css_visit" }
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", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.123.8"
version = "0.124.0"
[lib]
bench = false
@ -19,11 +19,11 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_utils = { version = "0.109.7", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
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.122.7", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.121.7", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.123.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.122.0", path = "../swc_css_parser" }
testing = { version = "0.30.8", 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.109.7"
version = "0.110.0"
[lib]
bench = false
@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_visit = { version = "0.111.7", path = "../swc_css_visit" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.112.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.111.7"
version = "0.112.0"
[package.metadata.docs.rs]
all-features = true
@ -23,5 +23,5 @@ path = []
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_css_ast = { version = "0.112.7", path = "../swc_css_ast" }
swc_css_ast = { version = "0.113.0", path = "../swc_css_ast" }
swc_visit = { version = "0.5.2", 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.74.10"
version = "0.75.0"
[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.71.10", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.72.0", 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.71.10"
version = "0.72.0"
[lib]
bench = false
@ -22,10 +22,10 @@ serde_json = "1.0.61"
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.112.7", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.122.7", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.87.10", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.121.7", path = "../swc_css_parser" }
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_ecma_ast = { version = "0.91.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.124.14", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.154.30", path = "../swc_ecma_minifier" }