From 660dcecb537f8cd20c6a3f5ee7825bc42483d955 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Tue, 2 Jan 2024 01:08:02 -0800 Subject: [PATCH] Justfie updates --- justfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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