From f136bd75f1e8e32e4f15747b9fb4b17369730dc9 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sat, 21 Mar 2026 17:10:40 -0700 Subject: [PATCH] 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 --- mise.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 59e3c8f..7f1995e 100644 --- a/mise.toml +++ b/mise.toml @@ -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"] }