chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-02 10:18:01 +00:00
parent 8cdc28cdfa
commit 2d36c3fb02
8 changed files with 23 additions and 20 deletions

View File

@ -23,6 +23,9 @@
- **(css/plugin)** Prepare Wasm plugins (#6567) ([8cdc28c](https://github.com/swc-project/swc/commit/8cdc28cdfa17f1773bdd30c2187c79e1db0a3ffe))
- **(html/parser)** Improve lexer (#6543) ([49b7e9e](https://github.com/swc-project/swc/commit/49b7e9e224c36346a8fe5ccbec623ae76f0cc79d))
### Miscellaneous Tasks

12
Cargo.lock generated
View File

@ -177,7 +177,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.21.2"
version = "0.21.3"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3073,7 +3073,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.233.2"
version = "0.233.3"
dependencies = [
"ahash",
"ansi_term",
@ -3260,7 +3260,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.44.5"
version = "0.44.6"
dependencies = [
"anyhow",
"binding_macros",
@ -4093,7 +4093,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.155.2"
version = "0.155.3"
dependencies = [
"ahash",
"anyhow",
@ -4279,7 +4279,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.19.2"
version = "0.19.3"
dependencies = [
"anyhow",
"dashmap",
@ -4360,7 +4360,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.78.2"
version = "0.78.3"
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.21.2"
version = "0.21.3"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.233.2", path = "../swc" }
swc = { optional = true, version = "0.233.3", path = "../swc" }
swc_common = { optional = true, version = "0.29.17", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.2", 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.233.2"
version = "0.233.3"
[lib]
bench = false
@ -98,7 +98,7 @@ swc_ecma_visit = { version = "0.81.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.18", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.16.17", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.23.1", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.78.2", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.78.3", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.17.18", 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.44.5"
version = "0.44.6"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -320,8 +320,8 @@ 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.21.2", path = "../binding_macros" }
swc = { optional = true, version = "0.233.2", path = "../swc" }
binding_macros = { optional = true, version = "0.21.3", path = "../binding_macros" }
swc = { optional = true, version = "0.233.3", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.25", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.193.2", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
@ -352,7 +352,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.160.2", path
swc_ecma_utils = { optional = true, version = "0.106.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.81.1", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.19.2", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.19.3", 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.9", path = "../swc_plugin_macro" }
@ -361,7 +361,7 @@ swc_trace_macro = { optional = true, version = "0.1.2", path =
testing = { optional = true, version = "0.31.18", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.13.3", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.78.2", path = "../swc_plugin_runner", default-features = false }
swc_plugin_runner = { optional = true, version = "0.78.3", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] }

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.155.2"
version = "0.155.3"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.17", path = "../swc_node_comments/" }
[dev-dependencies]
criterion = "0.3"
pretty_assertions = "1.1"
swc = { version = "0.233.2", path = "../swc" }
swc = { version = "0.233.3", path = "../swc" }
swc_ecma_ast = { version = "0.95.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.123.2", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.199.2", path = "../swc_ecma_transforms/" }

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.19.2"
version = "0.19.3"
[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.233.2", path = "../swc" }
swc = { version = "0.233.3", path = "../swc" }
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
swc_bundler = { version = "0.193.2", 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.78.2"
version = "0.78.3"
[lib]
bench = false