lldap/app/build.sh
2023-03-05 16:31:56 +01:00

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