mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
11 lines
331 B
Bash
Executable file
11 lines
331 B
Bash
Executable file
#!/bin/sh
|
|
wasm-pack build --release --target web && \
|
|
touch ./pkg/ANYTHING_HERE_WILL_BE_DELETED_ADD_TO_SRC && \
|
|
cp ./src/style.css ./pkg/style.css && \
|
|
cp ./src/wasmloader.js ./pkg/wasmloader.js && \
|
|
cp ./src/favicon.svg ./pkg/favicon.svg && \
|
|
cp -a ./src/external ./pkg/external && \
|
|
rm ./pkg/.gitignore
|
|
|
|
|