chore: Publish crates

This commit is contained in:
SWC Bot 2022-10-17 10:33:10 +00:00
parent 7c40e44d3f
commit 995c701bc4
8 changed files with 26 additions and 20 deletions

View File

@ -64,6 +64,12 @@
### Miscellaneous Tasks ### Miscellaneous Tasks
- **general**: Add lock action ([55a836a](https://github.com/swc-project/swc/commit/55a836ac823c62d83ecd7eb63dea4cb9e51604d4)) - **general**: Add lock action ([55a836a](https://github.com/swc-project/swc/commit/55a836ac823c62d83ecd7eb63dea4cb9e51604d4))
### Build
- **(es/plugin)** Fix Wasm build (#6179) ([7c40e44](https://github.com/swc-project/swc/commit/7c40e44d3f434035651941753a1a5aac19737446))
## [1.3.8] - 2022-10-14 ## [1.3.8] - 2022-10-14
### Bug Fixes ### Bug Fixes

12
Cargo.lock generated
View File

@ -168,7 +168,7 @@ dependencies = [
[[package]] [[package]]
name = "binding_macros" name = "binding_macros"
version = "0.20.32" version = "0.20.33"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"console_error_panic_hook", "console_error_panic_hook",
@ -2982,7 +2982,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.232.32" version = "0.232.33"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -3168,7 +3168,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.38.19" version = "0.38.20"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3997,7 +3997,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_estree_compat" name = "swc_estree_compat"
version = "0.154.32" version = "0.154.33"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -4183,7 +4183,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_node_bundler" name = "swc_node_bundler"
version = "0.18.32" version = "0.18.33"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"dashmap", "dashmap",
@ -4264,7 +4264,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin_runner" name = "swc_plugin_runner"
version = "0.77.15" version = "0.77.16"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"criterion", "criterion",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "binding_macros" name = "binding_macros"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.20.32" version = "0.20.33"
[lib] [lib]
bench = false bench = false
@ -30,7 +30,7 @@ binding_wasm = [
[dependencies] [dependencies]
# Common deps for the SWC imports # Common deps for the SWC imports
swc = { optional = true, version = "0.232.32", path = "../swc" } swc = { optional = true, version = "0.232.33", path = "../swc" }
swc_common = { optional = true, version = "0.29.8", path = "../swc_common" } swc_common = { optional = true, version = "0.29.8", path = "../swc_common" }
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" }
swc_ecma_transforms = { optional = true, version = "0.198.16", path = "../swc_ecma_transforms" } swc_ecma_transforms = { optional = true, version = "0.198.16", path = "../swc_ecma_transforms" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.232.32" version = "0.232.33"
[lib] [lib]
bench = false bench = false
@ -94,7 +94,7 @@ swc_ecma_visit = { version = "0.80.11", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.8", path = "../swc_error_reporters" } swc_error_reporters = { version = "0.13.8", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.16.8", path = "../swc_node_comments" } swc_node_comments = { version = "0.16.8", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.22.11", path = "../swc_plugin_proxy", optional = true } swc_plugin_proxy = { version = "0.22.11", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.77.15", path = "../swc_plugin_runner", optional = true, default-features = false } swc_plugin_runner = { version = "0.77.16", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.17.8", path = "../swc_timer" } swc_timer = { version = "0.17.8", path = "../swc_timer" }
swc_visit = { version = "0.5.2", path = "../swc_visit" } swc_visit = { version = "0.5.2", path = "../swc_visit" }
tracing = "0.1.32" tracing = "0.1.32"

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.38.19" version = "0.38.20"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -317,8 +317,8 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies # swc_* dependencies
binding_macros = { optional = true, version = "0.20.32", path = "../binding_macros" } binding_macros = { optional = true, version = "0.20.33", path = "../binding_macros" }
swc = { optional = true, version = "0.232.32", path = "../swc" } swc = { optional = true, version = "0.232.33", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.21", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.4.21", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.192.30", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.192.30", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
@ -347,7 +347,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.159.14", path
swc_ecma_utils = { optional = true, version = "0.105.18", path = "../swc_ecma_utils" } swc_ecma_utils = { optional = true, version = "0.105.18", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.80.11", path = "../swc_ecma_visit" } swc_ecma_visit = { optional = true, version = "0.80.11", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" } swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.18.32", path = "../swc_node_bundler" } swc_node_bundler = { optional = true, version = "0.18.33", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" } swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" } swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" }
@ -356,7 +356,7 @@ swc_trace_macro = { optional = true, version = "0.1.2", path =
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.7.2", path = "../swc_css_compat", optional = true } swc_css_compat = { version = "0.7.2", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.15", path = "../swc_plugin_runner", default-features = false } swc_plugin_runner = { optional = true, version = "0.77.16", path = "../swc_plugin_runner", default-features = false }
[build-dependencies] [build-dependencies]
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] } 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" license = "Apache-2.0"
name = "swc_estree_compat" name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.154.32" version = "0.154.33"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.8", path = "../swc_node_comments/" }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
pretty_assertions = "1.1" pretty_assertions = "1.1"
swc = { version = "0.232.32", path = "../swc" } swc = { version = "0.232.33", path = "../swc" }
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.122.13", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.122.13", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.198.16", path = "../swc_ecma_transforms/" } swc_ecma_transforms = { version = "0.198.16", path = "../swc_ecma_transforms/" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_node_bundler" name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.18.32" version = "0.18.33"
[lib] [lib]
bench = false bench = false
@ -26,7 +26,7 @@ regex = "1"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
string_enum = { version = "0.3.2", path = "../string_enum" } string_enum = { version = "0.3.2", path = "../string_enum" }
swc = { version = "0.232.32", path = "../swc" } swc = { version = "0.232.33", path = "../swc" }
swc_atoms = { version = "0.4.21", path = "../swc_atoms" } swc_atoms = { version = "0.4.21", path = "../swc_atoms" }
swc_bundler = { version = "0.192.30", path = "../swc_bundler", features = [ swc_bundler = { version = "0.192.30", path = "../swc_bundler", features = [
"concurrent", "concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_runner" name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.77.15" version = "0.77.16"
[lib] [lib]
bench = false bench = false