chore(mise): Rename 'run' task to 'mainline'

Rename the mise task from 'run' to 'mainline' to make it more semantic:
  - 'mise run mainline' is clearer than 'mise run run'
  - Old 'run' task is kept as alias that depends on sync-all
  - Preserves backward compatibility with existing usage
This commit is contained in:
2026-03-21 17:10:40 -07:00
parent 860bab6550
commit f136bd75f1

View File

@@ -19,7 +19,8 @@ format = "uv run ruff format engine/ mainline.py"
# Run
# =====================
run = "uv run mainline.py"
mainline = "uv run mainline.py"
run = { run = "uv run mainline.py", depends = ["sync-all"] }
run-pygame = { run = "uv run mainline.py --display pygame", depends = ["sync-all"] }
run-terminal = { run = "uv run mainline.py --display terminal", depends = ["sync-all"] }