Add justfile

This commit is contained in:
Greg Shuflin 2023-11-19 01:50:37 -08:00
parent d8411f8bcc
commit 0633ad4b9a
1 changed files with 12 additions and 0 deletions

12
justfile Normal file
View File

@ -0,0 +1,12 @@
_default:
just --list
install:
cargo install wasm-pack
build:
~/.cargo/bin/wasm-pack build --target web
serve:
python -m http.server 9001