deno/std/hash/_wasm
Kitson Kelly 82aabb657a
feat: add --no-check option (#6456)
This commit adds a "--no-check" option to following subcommands:
- "deno cache"
- "deno info"
- "deno run"
- "deno test"

The "--no-check" options allows to skip type checking step and instead 
directly transpiles TS sources to JS sources. 

This solution uses `ts.transpileModule()` API and is just an interim
solution before implementing it fully in Rust.
2020-07-08 11:26:39 +02:00
..
src feat(std/hash): reimplement all hashes in WASM (#6292) 2020-06-16 17:12:50 -04:00
build.ts feat(std/hash): reimplement all hashes in WASM (#6292) 2020-06-16 17:12:50 -04:00
Cargo.lock feat(std/hash): reimplement all hashes in WASM (#6292) 2020-06-16 17:12:50 -04:00
Cargo.toml perf(std/hash): optimize for speed (O3) (#6499) 2020-06-26 14:11:20 -04:00
hash.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
README.md feat(std/hash): reimplement all hashes in WASM (#6292) 2020-06-16 17:12:50 -04:00
wasm.js perf(std/hash): optimize for speed (O3) (#6499) 2020-06-26 14:11:20 -04:00

How to build

Prerequisite

wasm-pack is required.

cargo install wasm-pack

Build

deno run --allow-read --allow-write --allow-run ./build.ts

wasm.js will be generated.