diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-07 20:43:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 20:43:27 +0200 |
commit | 2b66b8a03e4f81cc158be40d07534f26fa762c2b (patch) | |
tree | bdeb6b1e6737bd839c87e2d6d178da42d9004ca4 /cli/compilers/mod.rs | |
parent | 93cf3bd5341d5985201ea0905280082d5a3310f9 (diff) |
BREAKING: Remove support for .wasm imports (#5135)
Importing .wasm files is non-standardized therefore deciding to
support current functionality past 1.0 release is risky.
Besides that .wasm import posed many challenges in our codebase
due to complex interactions with TS compiler which spawned
thread for each encountered .wasm import.
This commit removes:
- cli/compilers/wasm.rs
- cli/compilers/wasm_wrap.js
- two integration tests related to .wasm imports
Diffstat (limited to 'cli/compilers/mod.rs')
-rw-r--r-- | cli/compilers/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/compilers/mod.rs b/cli/compilers/mod.rs index f773e2de6..bc3bfade2 100644 --- a/cli/compilers/mod.rs +++ b/cli/compilers/mod.rs @@ -6,14 +6,12 @@ use futures::Future; mod compiler_worker; mod js; mod ts; -mod wasm; pub use js::JsCompiler; pub use ts::runtime_compile; pub use ts::runtime_transpile; pub use ts::TargetLib; pub use ts::TsCompiler; -pub use wasm::WasmCompiler; pub type CompilationResultFuture = dyn Future<Output = JsonResult>; |