mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 13:07:00 +01:00
5 lines
161 B
Bash
5 lines
161 B
Bash
|
#!/bin/sh
|
||
|
wasm-pack build --no-typescript --release --target web && \
|
||
|
rollup ./src/main.js --format iife --file ./pkg/bundle.js && \
|
||
|
rm ./pkg/.gitignore
|