mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
9 lines
256 B
Bash
9 lines
256 B
Bash
|
#!/bin/sh
|
||
|
wasm-pack build --no-typescript --release --target web && \
|
||
|
rollup ./src/main.js --format iife --file ./pkg/bundle.js && \
|
||
|
cp ./src/style.css ./pkg/style.css && \
|
||
|
cp -a ./src/external ./pkg/external && \
|
||
|
rm ./pkg/.gitignore
|
||
|
|
||
|
|