diff --git a/justfile b/justfile new file mode 100644 index 0000000..47828dc --- /dev/null +++ b/justfile @@ -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