Compare commits
6 Commits
1158821aff
...
5a778d9a55
Author | SHA1 | Date | |
---|---|---|---|
|
5a778d9a55 | ||
|
62ad321a88 | ||
|
14a41dc1bd | ||
|
d9b095c3f3 | ||
|
44739adfe5 | ||
|
624c0bd2f8 |
11
justfile
11
justfile
|
@ -15,6 +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`
|
||||
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 checkout release
|
||||
git merge {{from_branch}}
|
||||
git push
|
||||
git checkout {{from_branch}}
|
||||
|
||||
serve:
|
||||
open http://localhost:8080/index.html && miniserve pkg
|
||||
|
|
Loading…
Reference in New Issue
Block a user