mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
7 lines
164 B
Bash
7 lines
164 B
Bash
|
#!/bin/sh
|
||
|
wasm-pack build --dev --target web && \
|
||
|
cp ./src/style.css ./pkg/style.css && \
|
||
|
cp -a ./src/external ./pkg/external && \
|
||
|
rm ./pkg/.gitignore
|
||
|
|