chore: Publish crates

This commit is contained in:
SWC Bot 2022-11-03 06:33:20 +00:00
parent 0bc682f529
commit 8df5ef9d54
13 changed files with 54 additions and 48 deletions

View File

@ -10,6 +10,12 @@
- **(es/parser)** Fix parsing of `await` (#6316) ([28af15e](https://github.com/swc-project/swc/commit/28af15e4757c77e1cc9c75e99abcdad23b87da5f)) - **(es/parser)** Fix parsing of `await` (#6316) ([28af15e](https://github.com/swc-project/swc/commit/28af15e4757c77e1cc9c75e99abcdad23b87da5f))
### Features
- **(css/parser)** Improve error recovery (#6336) ([0bc682f](https://github.com/swc-project/swc/commit/0bc682f5290cd9c9b1ad2b41ece529814e9699d0))
### Miscellaneous Tasks ### Miscellaneous Tasks

22
Cargo.lock generated
View File

@ -3162,7 +3162,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.40.44" version = "0.40.45"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3211,7 +3211,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.137.15" version = "0.137.16"
dependencies = [ dependencies = [
"swc_css_ast", "swc_css_ast",
"swc_css_codegen", "swc_css_codegen",
@ -3239,7 +3239,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_codegen" name = "swc_css_codegen"
version = "0.134.14" version = "0.134.15"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -3268,7 +3268,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_compat" name = "swc_css_compat"
version = "0.9.14" version = "0.9.15"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"serde", "serde",
@ -3285,7 +3285,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_lints" name = "swc_css_lints"
version = "0.43.14" version = "0.43.15"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"parking_lot", "parking_lot",
@ -3304,7 +3304,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_minifier" name = "swc_css_minifier"
version = "0.99.15" version = "0.99.16"
dependencies = [ dependencies = [
"criterion", "criterion",
"serde", "serde",
@ -3321,7 +3321,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_modules" name = "swc_css_modules"
version = "0.10.14" version = "0.10.15"
dependencies = [ dependencies = [
"rustc-hash", "rustc-hash",
"serde", "serde",
@ -3338,7 +3338,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_parser" name = "swc_css_parser"
version = "0.133.14" version = "0.133.15"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"criterion", "criterion",
@ -3355,7 +3355,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_prefixer" name = "swc_css_prefixer"
version = "0.135.14" version = "0.135.15"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"preset_env_base", "preset_env_base",
@ -4040,7 +4040,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.93.41" version = "0.93.42"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -4092,7 +4092,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.90.41" version = "0.90.42"
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.40.44" version = "0.40.45"
[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.67", 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.13", path = "../swc_common" } swc_common = { optional = true, version = "0.29.13", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.124.4", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.124.4", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.14", path = "../swc_css_codegen" } swc_css_codegen = { optional = true, version = "0.134.15", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.15", path = "../swc_css_minifier" } swc_css_minifier = { optional = true, version = "0.99.16", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.14", path = "../swc_css_parser" } swc_css_parser = { optional = true, version = "0.133.15", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.14", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.135.15", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.4", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.121.4", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.123.4", path = "../swc_css_visit" } swc_css_visit = { optional = true, version = "0.123.4", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.17", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.94.17", path = "../swc_ecma_ast" }
@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.17", 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.13", path = "../testing" } testing = { optional = true, version = "0.31.13", 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.9.14", path = "../swc_css_compat", optional = true } swc_css_compat = { version = "0.9.15", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.29", path = "../swc_plugin_runner", default-features = false } swc_plugin_runner = { optional = true, version = "0.77.29", 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.137.15" version = "0.137.16"
[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.124.4", path = "../swc_css_ast"} swc_css_ast = {version = "0.124.4", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.14", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.134.15", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.14", path = "../swc_css_compat", optional = true} swc_css_compat = {version = "0.9.15", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.15", path = "../swc_css_minifier", optional = true} swc_css_minifier = {version = "0.99.16", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.14", path = "../swc_css_modules", optional = true} swc_css_modules = {version = "0.10.15", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.14", path = "../swc_css_parser"} swc_css_parser = {version = "0.133.15", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.14", path = "../swc_css_prefixer", optional = true} swc_css_prefixer = {version = "0.135.15", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"} swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"} swc_css_visit = {version = "0.123.4", 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.134.14" version = "0.134.15"
[lib] [lib]
bench = false bench = false
@ -27,6 +27,6 @@ swc_css_utils = { version = "0.121.4", path = "../swc_css_utils" }
swc_common = { version = "0.29.13", path = "../swc_common", features = [ swc_common = { version = "0.29.13", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_css_parser = { version = "0.133.14", path = "../swc_css_parser" } swc_css_parser = { version = "0.133.15", path = "../swc_css_parser" }
swc_css_visit = { version = "0.123.4", path = "../swc_css_visit" } swc_css_visit = { version = "0.123.4", path = "../swc_css_visit" }
testing = { version = "0.31.13", path = "../testing" } testing = { version = "0.31.13", 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.9.14" version = "0.9.15"
[lib] [lib]
bench = false bench = false
@ -23,6 +23,6 @@ swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"} swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.134.14", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.134.15", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.14", path = "../swc_css_parser"} swc_css_parser = {version = "0.133.15", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"} testing = {version = "0.31.13", 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.43.14" version = "0.43.15"
[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.133.14", path = "../swc_css_parser" } swc_css_parser = { version = "0.133.15", path = "../swc_css_parser" }
testing = { version = "0.31.13", path = "../testing" } testing = { version = "0.31.13", 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.99.15" version = "0.99.16"
[lib] [lib]
bench = false bench = false
@ -22,8 +22,8 @@ swc_css_visit = { version = "0.123.4", path = "../swc_css_visit" }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
swc_css_codegen = { version = "0.134.14", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.134.15", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.14", path = "../swc_css_parser" } swc_css_parser = { version = "0.133.15", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.13", path = "../testing" } testing = { version = "0.31.13", 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.10.14" version = "0.10.15"
[lib] [lib]
bench = false bench = false
@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.24", path = "../swc_atoms"} swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.13", path = "../swc_common"} swc_common = {version = "0.29.13", path = "../swc_common"}
swc_css_ast = {version = "0.124.4", path = "../swc_css_ast"} swc_css_ast = {version = "0.124.4", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.14", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.134.15", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.14", path = "../swc_css_parser"} swc_css_parser = {version = "0.133.15", path = "../swc_css_parser"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"} swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
serde_json = "1" serde_json = "1"
swc_css_compat = {version = "0.9.14", path = "../swc_css_compat"} swc_css_compat = {version = "0.9.15", path = "../swc_css_compat"}
testing = {version = "0.31.13", path = "../testing"} testing = {version = "0.31.13", 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.133.14" version = "0.133.15"
[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.135.14" version = "0.135.15"
[lib] [lib]
bench = false bench = false
@ -24,6 +24,6 @@ swc_css_utils = {version = "0.121.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"} swc_css_visit = {version = "0.123.4", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.134.14", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.134.15", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.14", path = "../swc_css_parser"} swc_css_parser = {version = "0.133.15", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"} testing = {version = "0.31.13", 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.93.41" version = "0.93.42"
[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.28.4", path = "../swc_html_ast"} swc_html_ast = {version = "0.28.4", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.10", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.37.10", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.41", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.90.42", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.10", path = "../swc_html_parser"} swc_html_parser = {version = "0.34.10", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.4", path = "../swc_html_visit"} swc_html_visit = {version = "0.28.4", 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.90.41" version = "0.90.42"
[lib] [lib]
bench = false bench = false
@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.24", 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.13", path = "../swc_common" } swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.4", path = "../swc_css_ast" } swc_css_ast = { version = "0.124.4", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.134.14", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.134.15", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.15", path = "../swc_css_minifier" } swc_css_minifier = { version = "0.99.16", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.14", path = "../swc_css_parser" } swc_css_parser = { version = "0.133.15", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.17", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.94.17", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.29", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.127.29", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.67", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.159.67", path = "../swc_ecma_minifier" }