(teamName: string)
| 120 | * Gets the path to a team's config.json file |
| 121 | */ |
| 122 | export function getTeamFilePath(teamName: string): string { |
| 123 | return join(getTeamDir(teamName), 'config.json') |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Reads a team file by name (sync — for sync contexts like React render paths) |
no test coverage detected