From 2b38c2a19693bf514fd5ffcb4babb004cd366161 Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Sat, 9 May 2026 08:09:03 +1000 Subject: [PATCH] chore: add mise.toml to pin tool versions Consolidates tool versions already declared across the project into a single mise.toml so that `mise install` / `mise exec` activates the correct runtime in one step. Without an explicit project-level pin, mise falls back to the global user config, silently using the wrong version even when .nvmrc is present (legacy files rank below all mise config files). Versions mirror existing project pins: - node 24.13.0 (frontend/.nvmrc) - pnpm 10.28.1 (frontend/package.json#packageManager) - go 1.25.7 (go.mod) --- mise.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mise.toml diff --git a/mise.toml b/mise.toml new file mode 100644 index 000000000..2148b7af6 --- /dev/null +++ b/mise.toml @@ -0,0 +1,4 @@ +[tools] +node = "24.13.0" # keep in sync with frontend/.nvmrc +pnpm = "10.28.1" # keep in sync with frontend/package.json#packageManager +go = "1.25.7" # keep in sync with go.mod