Live location tracking and playback for the game "manhunt"

Fix checks

bwc9876.dev 2a141893 9a68a299

verified
+2 -2
+1 -1
frontend/package.json
··· 7 7 "dev": "vite", 8 8 "build": "tsc && vite build", 9 9 "preview": "vite preview", 10 - "lint": "prettier --check . && tsc && eslint --cache", 10 + "lint": "tsc && eslint --cache", 11 11 "tauri": "tauri" 12 12 }, 13 13 "dependencies": {
+1 -1
nix/checks/types-sync.nix
··· 1 1 {pkgs, ...}: 2 2 pkgs.runCommand "check-types-synced" {} '' 3 3 ${pkgs.manhunt}/bin/export-types ./bindings.ts 4 - ${pkgs.prettier}/bin/prettier --write ./bindings.ts --config ${../../frontend/.prettierrc.yaml} 4 + ${pkgs.prettier}/bin/prettier --write ./bindings.ts --config ${../../.prettierrc.yaml} 5 5 diff bindings.ts ${../../frontend/src/bindings.ts} 6 6 touch $out 7 7 ''