10 lines
134 B
Bash
10 lines
134 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ $1 == "dev" ]]; then
|
||
|
ARGS="--dev"
|
||
|
else
|
||
|
ARGS="--release"
|
||
|
fi
|
||
|
|
||
|
wasm-pack build -t web $ARGS
|
||
|
python3 -m http.server
|