mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* account person extend was showing failure when succeeding * first run on a user profile page, did some other CSS tweaks to the UI * UI neatening, profile wireframing, robotstxt, PWA manifest * adding domain_display_name to webmanifest
15 lines
461 B
Bash
Executable file
15 lines
461 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "${BUILD_FLAGS}" ]; then
|
|
BUILD_FLAGS="--release"
|
|
fi
|
|
|
|
wasm-pack build ${BUILD_FLAGS} --target web || exit 1
|
|
|
|
touch ./pkg/ANYTHING_HERE_WILL_BE_DELETED_ADD_TO_SRC && \
|
|
rsync --delete-after -r --copy-links -v ./src/img/ ./pkg/img/ && \
|
|
rsync --delete-after -r --copy-links -v ./src/external/ ./pkg/external/ && \
|
|
cp ./src/style.css ./pkg/style.css && \
|
|
cp ./src/wasmloader.js ./pkg/wasmloader.js && \
|
|
rm ./pkg/.gitignore
|