hore(review): tighten pre-merge audit cleanup
🔍 Lint / 🪄 Check lint (pull_request) Has been cancelled
🔍 Lint / 🎨 Check format (pull_request) Has been cancelled
🔍 Lint / 🔎 Typecheck (pull_request) Has been cancelled
📊 Quality / 🔒 Security Audit (pull_request) Has been cancelled
📊 Quality / 📋 Dependency Freshness (pull_request) Has been cancelled
📊 Quality / 📦 Bundle Size (pull_request) Has been cancelled
🔍 Lint / 🏗 Build (pull_request) Has been cancelled

This commit is contained in:
Tom Boullay
2026-05-29 01:34:10 +02:00
parent 093ffd726d
commit 95ca1bbfde
12 changed files with 69 additions and 29 deletions
+1 -1
View File
@@ -2,8 +2,8 @@ import type {
MissionStep,
RepairMissionId,
} from "@/types/gameplay/repairMission";
import { REPAIR_MISSION_IDS } from "@/types/gameplay/repairMission";
const REPAIR_MISSION_IDS = ["ebike", "pylon", "farm"] as const;
const REPAIR_MISSION_ID_VALUES: ReadonlySet<string> = new Set(
REPAIR_MISSION_IDS,
);
+6
View File
@@ -83,6 +83,12 @@ export const VEGETATION_TYPE_KEYS = [
export type VegetationType = (typeof VEGETATION_TYPE_KEYS)[number];
export const VEGETATION_MAP_NODE_NAMES: ReadonlySet<string> = new Set(
Object.values(VEGETATION_TYPES)
.filter((config) => config.enabled)
.map((config) => config.mapName),
);
export function getVegetationModelScaleMultiplier(name: string): number {
return (
Object.values(VEGETATION_TYPES).find((config) => config.mapName === name)