chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-20 04:38:08 +00:00
parent d7a0524fb6
commit 35caad3c4d
18 changed files with 71 additions and 68 deletions

View File

@ -50,6 +50,9 @@
- **(css/parser)** Normalize at-rule names (#6676) ([7f8ba9c](https://github.com/swc-project/swc/commit/7f8ba9c22c9910e03a3b6122dd4ca4324314bbb5))
- **(css/parser)** Normalize keyframe selectors (#6688) ([d7a0524](https://github.com/swc-project/swc/commit/d7a0524fb64c97facf067281ae3a2fc4afae68fe))
- **(css/prefixer)** Support font-face format (#6644) ([199ac74](https://github.com/swc-project/swc/commit/199ac7461814553bab97c1f0f7b1c89f34897122))

32
Cargo.lock generated
View File

@ -177,7 +177,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.24.17"
version = "0.24.18"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3073,7 +3073,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.236.17"
version = "0.236.18"
dependencies = [
"ahash",
"ansi_term",
@ -3260,7 +3260,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.48.35"
version = "0.48.36"
dependencies = [
"anyhow",
"binding_macros",
@ -3313,7 +3313,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.144.28"
version = "0.144.29"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3341,7 +3341,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.141.10"
version = "0.141.11"
dependencies = [
"auto_impl",
"bitflags",
@ -3370,7 +3370,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.16.15"
version = "0.16.16"
dependencies = [
"bitflags",
"once_cell",
@ -3388,7 +3388,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.50.10"
version = "0.50.11"
dependencies = [
"auto_impl",
"parking_lot",
@ -3407,7 +3407,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.106.18"
version = "0.106.19"
dependencies = [
"criterion",
"serde",
@ -3424,7 +3424,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.17.15"
version = "0.17.16"
dependencies = [
"rustc-hash",
"serde",
@ -3441,7 +3441,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.140.10"
version = "0.140.11"
dependencies = [
"bitflags",
"criterion",
@ -3458,7 +3458,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.142.15"
version = "0.142.16"
dependencies = [
"once_cell",
"preset_env_base",
@ -4112,7 +4112,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.158.17"
version = "0.158.18"
dependencies = [
"ahash",
"anyhow",
@ -4160,7 +4160,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.100.26"
version = "0.100.27"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -4212,7 +4212,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.97.26"
version = "0.97.27"
dependencies = [
"criterion",
"once_cell",
@ -4298,7 +4298,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.22.17"
version = "0.22.18"
dependencies = [
"anyhow",
"dashmap",
@ -4379,7 +4379,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.81.10"
version = "0.81.11"
dependencies = [
"anyhow",
"criterion",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.24.17"
version = "0.24.18"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.236.17", path = "../swc" }
swc = { optional = true, version = "0.236.18", path = "../swc" }
swc_common = { optional = true, version = "0.29.23", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.7", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.17", path = "../swc_ecma_transforms" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.236.17"
version = "0.236.18"
[lib]
bench = false
@ -98,7 +98,7 @@ swc_ecma_visit = { version = "0.81.7", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.24", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.16.23", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.23.7", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.81.10", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.81.11", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.17.25", path = "../swc_timer" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }
tracing = "0.1.32"

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.48.35"
version = "0.48.36"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -340,18 +340,18 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies
binding_macros = { optional = true, version = "0.24.17", path = "../binding_macros" }
swc = { optional = true, version = "0.236.17", path = "../swc" }
binding_macros = { optional = true, version = "0.24.18", path = "../binding_macros" }
swc = { optional = true, version = "0.236.18", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.29", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.193.24", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.23", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.131.3", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.141.10", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.18", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.15", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.10", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.15", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.141.11", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.19", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.16", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.11", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.16", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.128.3", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.130.3", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.95.7", path = "../swc_ecma_ast" }
@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.1.6", path =
swc_ecma_utils = { optional = true, version = "0.106.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.81.7", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.22.17", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.22.18", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" }
@ -381,8 +381,8 @@ swc_plugin_proxy = { optional = true, version = "0.23.7", path =
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.25", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.16.15", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.81.10", path = "../swc_plugin_runner", default-features = false }
swc_css_compat = { version = "0.16.16", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.81.11", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] }

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.144.28"
version = "0.144.29"
[package.metadata.docs.rs]
all-features = true
@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.10", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.15", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.18", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.15", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.10", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.15", path = "../swc_css_prefixer", optional = true}
swc_css_codegen = {version = "0.141.11", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.16", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.19", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.16", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.11", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.16", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", 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.141.10"
version = "0.141.11"
[lib]
bench = false
@ -27,6 +27,6 @@ swc_css_utils = { version = "0.128.3", path = "../swc_css_utils" }
swc_common = { version = "0.29.23", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.140.10", path = "../swc_css_parser" }
swc_css_parser = { version = "0.140.11", path = "../swc_css_parser" }
swc_css_visit = { version = "0.130.3", path = "../swc_css_visit" }
testing = { version = "0.31.25", path = "../testing" }

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.16.15"
version = "0.16.16"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.141.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.10", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.11", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.11", path = "../swc_css_parser"}
testing = {version = "0.31.25", 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.50.10"
version = "0.50.11"
[lib]
bench = false
@ -26,5 +26,5 @@ thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.140.10", path = "../swc_css_parser" }
swc_css_parser = { version = "0.140.11", path = "../swc_css_parser" }
testing = { version = "0.31.25", 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.106.18"
version = "0.106.19"
[lib]
bench = false
@ -22,8 +22,8 @@ swc_css_visit = { version = "0.130.3", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.141.10", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.140.10", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.141.11", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.140.11", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.25", 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.17.15"
version = "0.17.16"
[lib]
bench = false
@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.29", path = "../swc_atoms"}
swc_common = {version = "0.29.23", path = "../swc_common"}
swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.10", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.11", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.11", path = "../swc_css_parser"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}
[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.16.15", path = "../swc_css_compat"}
swc_css_compat = {version = "0.16.16", path = "../swc_css_compat"}
testing = {version = "0.31.25", 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.140.10"
version = "0.140.11"
[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.142.15"
version = "0.142.16"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.141.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.10", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.11", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.11", path = "../swc_css_parser"}
testing = {version = "0.31.25", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.158.17"
version = "0.158.18"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.23", path = "../swc_node_comments/" }
[dev-dependencies]
criterion = "0.3"
pretty_assertions = "1.1"
swc = { version = "0.236.17", path = "../swc" }
swc = { version = "0.236.18", path = "../swc" }
swc_ecma_ast = { version = "0.95.7", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.123.11", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.199.17", path = "../swc_ecma_transforms/" }

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.100.26"
version = "0.100.27"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.15", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.27", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.26", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.97.27", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.26", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.15", 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.97.26"
version = "0.97.27"
[lib]
bench = false
@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.29", path = "../swc_atoms" }
swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.23", path = "../swc_common" }
swc_css_ast = { version = "0.131.3", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.141.10", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.106.18", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.140.10", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.141.11", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.106.19", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.140.11", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.95.7", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.13", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.24", path = "../swc_ecma_minifier" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.22.17"
version = "0.22.18"
[lib]
bench = false
@ -26,7 +26,7 @@ regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
string_enum = { version = "0.3.2", path = "../string_enum" }
swc = { version = "0.236.17", path = "../swc" }
swc = { version = "0.236.18", path = "../swc" }
swc_atoms = { version = "0.4.29", path = "../swc_atoms" }
swc_bundler = { version = "0.193.24", path = "../swc_bundler", features = [
"concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git"
version = "0.81.10"
version = "0.81.11"
[lib]
bench = false
@ -63,7 +63,7 @@ swc_atoms = { version = "0.4.29", path = '../swc_atoms' }
swc_css_ast = { version = "0.131.3", path = "../swc_css_ast", features = [
"rkyv-impl",
] }
swc_css_parser = { version = "0.140.10", path = "../swc_css_parser" }
swc_css_parser = { version = "0.140.11", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.95.7", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }