chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-11 04:33:40 +00:00
parent a920997f4b
commit 5966aab27e
11 changed files with 37 additions and 34 deletions

View File

@ -23,6 +23,9 @@
- **(css/ast)** Support `::highlight()` (#6109) ([1938ed2](https://github.com/swc-project/swc/commit/1938ed26a158510ee15f57ca9f2599b26d0f43ac))
- **(css/codegen)** Support lowercase case insensitivity (#6113) ([a920997](https://github.com/swc-project/swc/commit/a920997f4b1e4a194e2b74bc8a27184d0e438d31))
- **(es/minifier)** Mark ref to fn as non-call in alias analyzer (#6088) ([b0c5745](https://github.com/swc-project/swc/commit/b0c57458c838097835fd9e1f1af1888867cc1b71))

18
Cargo.lock generated
View File

@ -3145,7 +3145,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.33.0"
version = "0.33.1"
dependencies = [
"binding_macros",
"once_cell",
@ -3194,7 +3194,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.130.0"
version = "0.130.1"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3222,7 +3222,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.127.0"
version = "0.127.1"
dependencies = [
"auto_impl",
"bitflags",
@ -3251,7 +3251,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"once_cell",
"preset_env_base",
@ -3288,7 +3288,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.92.0"
version = "0.92.1"
dependencies = [
"criterion",
"serde",
@ -3305,7 +3305,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"rustc-hash",
"serde",
@ -3339,7 +3339,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.128.0"
version = "0.128.1"
dependencies = [
"once_cell",
"preset_env_base",
@ -4029,7 +4029,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.83.0"
version = "0.83.1"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4081,7 +4081,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.80.0"
version = "0.80.1"
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.33.0"
version = "0.33.1"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -324,10 +324,10 @@ swc_bundler = { optional = true, version = "0.192.7", path
swc_cached = { optional = true, version = "0.3.14", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.5", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.117.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.127.0", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.92.0", path = "../swc_css_minifier" }
swc_css_codegen = { optional = true, version = "0.127.1", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.92.1", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.126.0", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.128.0", path = "../swc_css_prefixer" }
swc_css_prefixer = { optional = true, version = "0.128.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.114.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.116.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.6", path = "../swc_ecma_ast" }
@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.6", path =
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.5", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.2.0", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.2.1", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.7", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]

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.130.0"
version = "0.130.1"
[package.metadata.docs.rs]
all-features = true
@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = {version = "0.117.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.127.0", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.2.0", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.92.0", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.3.0", path = "../swc_css_modules", optional = true}
swc_css_codegen = {version = "0.127.1", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.2.1", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.92.1", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.3.1", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.126.0", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.128.0", path = "../swc_css_prefixer", optional = true}
swc_css_prefixer = {version = "0.128.1", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.114.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.116.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.127.0"
version = "0.127.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_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.0"
version = "0.2.1"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = { version = "0.114.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.116.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.127.0", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.127.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.126.0", path = "../swc_css_parser" }
testing = { version = "0.31.5", 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.92.0"
version = "0.92.1"
[lib]
bench = false
@ -22,7 +22,7 @@ swc_css_visit = { version = "0.116.0", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.127.0", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.127.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.126.0", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
testing = { version = "0.31.5", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_modules"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.0"
version = "0.3.1"
[lib]
bench = false
@ -20,7 +20,7 @@ serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.4.18", path = "../swc_atoms" }
swc_common = { version = "0.29.5", path = "../swc_common" }
swc_css_ast = { version = "0.117.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.127.0", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.127.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.126.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.116.0", path = "../swc_css_visit" }
swc_ecma_loader = { version = "0.41.5", path = "../swc_ecma_loader" }

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.128.0"
version = "0.128.1"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.114.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.116.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.127.0", path = "../swc_css_codegen"}
swc_css_codegen = {version = "0.127.1", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.126.0", path = "../swc_css_parser"}
testing = {version = "0.31.5", 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.83.0"
version = "0.83.1"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.26.7", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.35.8", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.80.0", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.80.1", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.32.8", path = "../swc_html_parser"}
swc_html_visit = {version = "0.26.7", 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.80.0"
version = "0.80.1"
[lib]
bench = false
@ -23,8 +23,8 @@ swc_atoms = { version = "0.4.18", path = "../swc_atoms" }
swc_cached = { version = "0.3.14", path = "../swc_cached" }
swc_common = { version = "0.29.5", path = "../swc_common" }
swc_css_ast = { version = "0.117.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.127.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.92.0", path = "../swc_css_minifier" }
swc_css_codegen = { version = "0.127.1", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.92.1", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.126.0", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.6", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.10", path = "../swc_ecma_codegen" }