chore: Publish crates

This commit is contained in:
SWC Bot 2022-03-23 07:15:30 +00:00
parent 50f7f465f9
commit c658823e8e
3 changed files with 16 additions and 3 deletions

View File

@ -1,6 +1,14 @@
# Changelog
## [unreleased]
### Features
- **(wasm/plugin)** Implement initial plugin interface for wasm runtimes (#4123) ([50f7f46](https://github.com/swc-project/swc/commit/50f7f465f9181ef6bcb63ee5457aa42f5e6ee29c))
## [1.2.160] - 2022-03-22
### Bug Fixes

2
Cargo.lock generated
View File

@ -3068,7 +3068,7 @@ dependencies = [
[[package]]
name = "swc_cli"
version = "0.33.0"
version = "0.33.1"
dependencies = [
"anyhow",
"atty",

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli"
repository = "https://github.com/swc-project/swc.git"
version = "0.33.0"
version = "0.33.1"
[[bin]]
name = "swc"
@ -14,7 +14,12 @@ path = "./src/main.rs"
[features]
default = []
plugin = ["swc/plugin", "swc_plugin_runner/filesystem_cache", "wasmer/default", "wasmer-wasi/default"]
plugin = [
"swc/plugin",
"swc_plugin_runner/filesystem_cache",
"wasmer/default",
"wasmer-wasi/default",
]
[dependencies]
anyhow = "1.0.53"