mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
18 lines
313 B
Bash
Executable File
18 lines
313 B
Bash
Executable File
#! /bin/sh
|
|
|
|
cd $(dirname $0)
|
|
if ! which wasm-pack > /dev/null 2>&1
|
|
then
|
|
>&2 echo '`wasm-pack` not found. Try running `cargo install wasm-pack`'
|
|
exit 1
|
|
fi
|
|
if ! which gzip > /dev/null 2>&1
|
|
then
|
|
>&2 echo '`gzip` not found.'
|
|
exit 1
|
|
fi
|
|
|
|
wasm-pack build --target web --release
|
|
|
|
gzip -9 -f pkg/lldap_app_bg.wasm
|