lldap/app/build.sh
2023-03-28 17:33:13 +02:00

18 lines
316 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 -k -f pkg/lldap_app_bg.wasm