mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
43 lines
1.2 KiB
Bash
Executable file
43 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
# This builds the assets for the Web UI, defaulting to a release build.
|
|
|
|
if [ ! -f build_wasm.sh ]; then
|
|
echo "Please run from the crate directory. (server/web_ui)"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "${BUILD_FLAGS}" ]; then
|
|
BUILD_FLAGS="--release --no-typescript"
|
|
fi
|
|
|
|
if [ -z "$(which rsync)" ]; then
|
|
echo "Cannot find rsync which is needed to move things around, quitting!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$(which wasm-pack)" ]; then
|
|
echo "Cannot find wasm-pack which is needed to build the UI, quitting!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$(find ./pkg/ -name 'kanidmd*' | wc -l)" -gt 0 ]; then
|
|
echo "Cleaning up WASM files before build..."
|
|
rm pkg/kanidmd*
|
|
fi
|
|
|
|
# we can disable this since we want it to expand
|
|
# shellcheck disable=SC2086
|
|
wasm-pack build ${BUILD_FLAGS} --target web --mode no-install --no-pack || exit 1
|
|
|
|
touch ./pkg/ANYTHING_HERE_WILL_BE_DELETED_ADD_TO_SRC && \
|
|
rsync --delete-after -r --copy-links -v ./static/* ./pkg/ && \
|
|
cp ../../README.md ./pkg/
|
|
cp ../../LICENSE.md ./pkg/
|
|
rm ./pkg/.gitignore
|
|
|
|
# updates the brotli-compressed files
|
|
echo "brotli-compressing the WASM file..."
|
|
find ./pkg -name '*.wasm' -exec ./find_best_brotli.sh "{}" \; || exit 1
|