mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
11 lines
312 B
Bash
Executable file
11 lines
312 B
Bash
Executable file
#!/bin/sh
|
|
wasm-pack build --dev --target web || exit 1
|
|
|
|
touch ./pkg/ANYTHING_HERE_WILL_BE_DELETED_ADD_TO_SRC && \
|
|
cp -R ./src/img ./pkg/ && \
|
|
cp ./src/style.css ./pkg/style.css && \
|
|
cp ./src/wasmloader.js ./pkg/wasmloader.js && \
|
|
cp -a ./src/external ./pkg/external && \
|
|
rm ./pkg/.gitignore
|
|
|