chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-07 05:39:57 +00:00
parent b15e984317
commit 4c89ddd020
3 changed files with 20 additions and 17 deletions

View File

@ -68,6 +68,9 @@
- **(html)** Support boolean attributes (#4258) ([8640c8b](https://github.com/swc-project/swc/commit/8640c8bd43a164eb185733b5294342ff01c858f6))
- **(plugin)** Implement proxy for `dummy_with_cmt` (#4268) ([b15e984](https://github.com/swc-project/swc/commit/b15e984317ae6eb03597e9236f637fee205dd8a5))
- **(plugin/api)** Expose `swc_ecma_utils` (#4256) ([7bc04a6](https://github.com/swc-project/swc/commit/7bc04a67918374b1b2d02ed5034330cd6dd78d57))
### Miscellaneous Tasks

2
Cargo.lock generated
View File

@ -3879,7 +3879,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.50.0"
version = "0.50.1"
dependencies = [
"anyhow",
"once_cell",

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.50.0"
version = "0.50.1"
[lib]
bench = false
@ -24,31 +24,31 @@ memory_cache = []
anyhow = "1.0.42"
once_cell = "1.10.0"
parking_lot = "0.12.0"
serde = {version = "1.0.126", features = ["derive"]}
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
swc_common = {version = "0.17.19", path = "../swc_common", features = [
swc_common = { version = "0.17.19", path = "../swc_common", features = [
"plugin-rt",
"concurrent",
]}
swc_ecma_ast = {version = "0.75.0", path = "../swc_ecma_ast", features = [
] }
swc_ecma_ast = { version = "0.75.0", path = "../swc_ecma_ast", features = [
"rkyv-impl",
]}
swc_plugin_comments = {version = "0.1.1", path = "../swc_plugin_comments", features = [
] }
swc_plugin_comments = { version = "0.1.1", path = "../swc_plugin_comments", features = [
"plugin-rt",
]}
] }
tracing = "0.1.32"
wasmer = {version = "2.2.1", default-features = false}
wasmer-wasi = {version = "2.2.1", default-features = false}
wasmer = { version = "2.2.1", default-features = false }
wasmer-wasi = { version = "2.2.1", default-features = false }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-cache = {version = "2.2.1", optional = true}
wasmer-cache = { version = "2.2.1", optional = true }
[dev-dependencies]
swc_atoms = {version = "0.2.7", path = '../swc_atoms'}
swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader"}
swc_ecma_parser = {version = "0.100.0", path = "../swc_ecma_parser"}
swc_ecma_visit = {version = "0.61.0", path = "../swc_ecma_visit"}
testing = {version = "0.19.0", path = "../testing"}
swc_atoms = { version = "0.2.7", path = '../swc_atoms' }
swc_ecma_loader = { version = "0.29.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.100.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.61.0", path = "../swc_ecma_visit" }
testing = { version = "0.19.0", path = "../testing" }
# This allows we can run non-wasm32 target build command while some pkg select features for wasmer/js omits its transitive deps
wasmer = "2.2.1"
wasmer-wasi = "2.2.1"