From 0633ad4b9a898ea453e888384e3488f6011566da Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Sun, 19 Nov 2023 01:50:37 -0800 Subject: [PATCH] Add justfile --- justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 justfile 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