keep working on justfile

This commit is contained in:
Scott Richmond 2025-07-02 15:19:54 -04:00
parent 624c0bd2f8
commit 44739adfe5

View File

@ -15,10 +15,15 @@ clean-wasm-pack:
cat pkg/rudus.js.backup | tail -n+2>> pkg/rudus.js cat pkg/rudus.js.backup | tail -n+2>> pkg/rudus.js
rm pkg/rudus.js.backup rm pkg/rudus.js.backup
from-branch := shell("git branch --show-current") from-branch := `git branch --show-current`
release: release:
echo "{{from-branch}}" just wasm
git commit -am "release build"
git checkout release
git merge {{from-branch}}
git push
git checkout {{from-branch}}
serve: serve:
open http://localhost:8080/index.html && miniserve pkg open http://localhost:8080/index.html && miniserve pkg