chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-18 01:44:30 +00:00
parent 6e2e2ada4e
commit 25df5b37af
13 changed files with 54 additions and 48 deletions

View File

@ -16,6 +16,12 @@
- **(css/minifier)** Handle nested `calc()` (#6153) ([d4a733d](https://github.com/swc-project/swc/commit/d4a733d76461995b7549f5470e53df913a30ef0f)) - **(css/minifier)** Handle nested `calc()` (#6153) ([d4a733d](https://github.com/swc-project/swc/commit/d4a733d76461995b7549f5470e53df913a30ef0f))
### Refactor
- **(css/parser)** Improve project structure (#6110) ([6e2e2ad](https://github.com/swc-project/swc/commit/6e2e2ada4eab95a75554eecc8fab423bb8c94033))
### Testing ### Testing

22
Cargo.lock generated
View File

@ -3168,7 +3168,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.39.0" version = "0.39.1"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3217,7 +3217,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.136.0" version = "0.136.1"
dependencies = [ dependencies = [
"swc_css_ast", "swc_css_ast",
"swc_css_codegen", "swc_css_codegen",
@ -3245,7 +3245,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_codegen" name = "swc_css_codegen"
version = "0.133.0" version = "0.133.1"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -3274,7 +3274,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_compat" name = "swc_css_compat"
version = "0.8.0" version = "0.8.1"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"serde", "serde",
@ -3291,7 +3291,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_lints" name = "swc_css_lints"
version = "0.42.0" version = "0.42.1"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"parking_lot", "parking_lot",
@ -3310,7 +3310,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_minifier" name = "swc_css_minifier"
version = "0.98.0" version = "0.98.1"
dependencies = [ dependencies = [
"criterion", "criterion",
"serde", "serde",
@ -3327,7 +3327,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_modules" name = "swc_css_modules"
version = "0.9.0" version = "0.9.1"
dependencies = [ dependencies = [
"rustc-hash", "rustc-hash",
"serde", "serde",
@ -3344,7 +3344,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_parser" name = "swc_css_parser"
version = "0.132.0" version = "0.132.1"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"criterion", "criterion",
@ -3361,7 +3361,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_prefixer" name = "swc_css_prefixer"
version = "0.134.0" version = "0.134.1"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"preset_env_base", "preset_env_base",
@ -4045,7 +4045,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.89.1" version = "0.89.2"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -4097,7 +4097,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.86.1" version = "0.86.2"
dependencies = [ dependencies = [
"criterion", "criterion",
"once_cell", "once_cell",

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.39.0" version = "0.39.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -324,10 +324,10 @@ swc_bundler = { optional = true, version = "0.192.30", path
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.8", path = "../swc_common" } swc_common = { optional = true, version = "0.29.8", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.123.0", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.123.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.133.0", path = "../swc_css_codegen" } swc_css_codegen = { optional = true, version = "0.133.1", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.98.0", path = "../swc_css_minifier" } swc_css_minifier = { optional = true, version = "0.98.1", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.132.0", path = "../swc_css_parser" } swc_css_parser = { optional = true, version = "0.132.1", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.134.0", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.134.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.120.0", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.120.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.122.0", path = "../swc_css_visit" } swc_css_visit = { optional = true, version = "0.122.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.94.11", path = "../swc_ecma_ast" }
@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.11", path
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.8", path = "../testing" } testing = { optional = true, version = "0.31.8", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features # TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.8.0", path = "../swc_css_compat", optional = true } swc_css_compat = { version = "0.8.1", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.18", path = "../swc_plugin_runner", default-features = false } swc_plugin_runner = { optional = true, version = "0.77.18", path = "../swc_plugin_runner", default-features = false }
[build-dependencies] [build-dependencies]

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.136.0" version = "0.136.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]
[dependencies] [dependencies]
swc_css_ast = {version = "0.123.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.123.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.133.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.133.1", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.8.0", path = "../swc_css_compat", optional = true} swc_css_compat = {version = "0.8.1", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.98.0", path = "../swc_css_minifier", optional = true} swc_css_minifier = {version = "0.98.1", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.9.0", path = "../swc_css_modules", optional = true} swc_css_modules = {version = "0.9.1", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.132.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.132.1", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.134.0", path = "../swc_css_prefixer", optional = true} swc_css_prefixer = {version = "0.134.1", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.120.0", path = "../swc_css_utils/"} swc_css_utils = {version = "0.120.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.122.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.133.0" version = "0.133.1"
[lib] [lib]
bench = false bench = false
@ -27,6 +27,6 @@ swc_css_utils = { version = "0.120.0", path = "../swc_css_utils" }
swc_common = { version = "0.29.8", path = "../swc_common", features = [ swc_common = { version = "0.29.8", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_css_parser = { version = "0.132.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.132.1", path = "../swc_css_parser" }
swc_css_visit = { version = "0.122.0", path = "../swc_css_visit" } swc_css_visit = { version = "0.122.0", path = "../swc_css_visit" }
testing = { version = "0.31.8", path = "../testing" } testing = { version = "0.31.8", 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_compat" name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.8.0" version = "0.8.1"
[lib] [lib]
bench = false bench = false
@ -23,6 +23,6 @@ swc_css_utils = {version = "0.120.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.133.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.133.1", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.132.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.132.1", path = "../swc_css_parser"}
testing = {version = "0.31.8", path = "../testing"} testing = {version = "0.31.8", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_lints" name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.42.0" version = "0.42.1"
[lib] [lib]
bench = false bench = false
@ -26,5 +26,5 @@ thiserror = "1.0.30"
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.79" serde_json = "1.0.79"
swc_css_parser = { version = "0.132.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.132.1", path = "../swc_css_parser" }
testing = { version = "0.31.8", path = "../testing" } testing = { version = "0.31.8", path = "../testing" }

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.98.0" version = "0.98.1"
[lib] [lib]
bench = false bench = false
@ -22,8 +22,8 @@ swc_css_visit = { version = "0.122.0", path = "../swc_css_visit" }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
swc_css_codegen = { version = "0.133.0", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.133.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.132.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.132.1", 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.31.8", path = "../testing" } testing = { version = "0.31.8", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_modules" name = "swc_css_modules"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.9.0" version = "0.9.1"
[lib] [lib]
bench = false bench = false
@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.21", path = "../swc_atoms"} swc_atoms = {version = "0.4.21", path = "../swc_atoms"}
swc_common = {version = "0.29.8", path = "../swc_common"} swc_common = {version = "0.29.8", path = "../swc_common"}
swc_css_ast = {version = "0.123.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.123.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.133.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.133.1", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.132.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.132.1", path = "../swc_css_parser"}
swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
serde_json = "1" serde_json = "1"
swc_css_compat = {version = "0.8.0", path = "../swc_css_compat"} swc_css_compat = {version = "0.8.1", path = "../swc_css_compat"}
testing = {version = "0.31.8", path = "../testing"} testing = {version = "0.31.8", path = "../testing"}

View File

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

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.134.0" version = "0.134.1"
[lib] [lib]
bench = false bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.120.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.122.0", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.133.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.133.1", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.132.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.132.1", path = "../swc_css_parser"}
testing = {version = "0.31.8", path = "../testing"} testing = {version = "0.31.8", 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.89.1" version = "0.89.2"
[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.26.10", path = "../swc_html_ast"} swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.86.1", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.86.2", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"} swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"}
swc_html_visit = {version = "0.26.10", path = "../swc_html_visit"} swc_html_visit = {version = "0.26.10", 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.86.1" version = "0.86.2"
[lib] [lib]
bench = false bench = false
@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.21", path = "../swc_atoms" }
swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.8", path = "../swc_common" } swc_common = { version = "0.29.8", path = "../swc_common" }
swc_css_ast = { version = "0.123.0", path = "../swc_css_ast" } swc_css_ast = { version = "0.123.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.133.0", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.133.1", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.98.0", path = "../swc_css_minifier" } swc_css_minifier = { version = "0.98.1", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.132.0", path = "../swc_css_parser" } swc_css_parser = { version = "0.132.1", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.17", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.127.17", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.30", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.159.30", path = "../swc_ecma_minifier" }