diff --git a/justfile b/justfile index 47828dc..ffd24e2 100644 --- a/justfile +++ b/justfile @@ -1,12 +1,14 @@ _default: just --list -install: +# Install wasm-pack dev tool +install-wasm-pack: cargo install wasm-pack -build: +# Use wasm-pack to build a checkerboard binary +build-checkerboard: ~/.cargo/bin/wasm-pack build --target web - -serve: +# Serve the checkerboard pattern +serve-checkerboard: python -m http.server 9001