Compare commits

...

4 Commits

Author SHA1 Message Date
Scott Richmond
5a778d9a55 try again w/ justfile 2025-07-02 15:37:56 -04:00
Scott Richmond
62ad321a88 finish release recipe? 2025-07-02 15:35:19 -04:00
Scott Richmond
14a41dc1bd justinging 2025-07-02 15:34:36 -04:00
Scott Richmond
d9b095c3f3 keep justing 2025-07-02 15:26:19 -04:00

View File

@ -15,15 +15,17 @@ clean-wasm-pack:
cat pkg/rudus.js.backup | tail -n+2>> pkg/rudus.js
rm pkg/rudus.js.backup
from-branch := `git branch --show-current`
from_branch := `git branch --show-current`
git_status := `git status -s`
release:
echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }}
just wasm
git commit -am "release build"
-git commit -am "release build"
git checkout release
git merge {{from-branch}}
git merge {{from_branch}}
git push
git checkout {{from-branch}}
git checkout {{from_branch}}
serve:
open http://localhost:8080/index.html && miniserve pkg