Compare commits

..

4 Commits

Author SHA1 Message Date
8a7cbc484e Merge branch 'main' into release 2025-07-09 15:37:05 -04:00
959a9a36e7 release test 2025-07-09 15:36:57 -04:00
Scott Richmond
ea552f8b9b Merge branch 'main' of alea.ludus.dev:twc/ludus 2025-07-09 15:31:54 -04:00
Scott Richmond
aa8d6bbc0d reduce polling interval, 100 -> 10 2025-07-09 15:31:26 -04:00
2 changed files with 3 additions and 3 deletions

View File

@ -29,10 +29,10 @@ release:
echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }} echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }}
just build just build
git checkout release git checkout release
git merge {{from_branch}} git merge main
-git commit -am "release build" -git commit -am "release build"
git checkout main
git push git push
git checkout {{from_branch}}
# serve the pkg directory # serve the pkg directory
serve: serve:

View File

@ -96,7 +96,7 @@ function bundle_keys () {
} }
function start_io_polling () { function start_io_polling () {
io_interval_id = setInterval(io_poller, 100) io_interval_id = setInterval(io_poller, 10)
} }
// runs a ludus script; does not return the result // runs a ludus script; does not return the result