keep working on justfile

Former-commit-id: 44739adfe5
This commit is contained in:
Scott Richmond 2025-07-02 15:19:54 -04:00
parent 1d58f0d3a4
commit 3ae1e0e1a2

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