(rawMessage: string)
| 12 | export const BUNDLE_ID_STRUCTURED_OUTPUT_SCHEMA = 'xcodebuildmcp.output.bundle-id'; |
| 13 | |
| 14 | export function appPathErrorMessages(rawMessage: string): string[] { |
| 15 | return extractQueryDiagnostics(rawMessage).errors.map((error) => error.message); |
| 16 | } |
| 17 | |
| 18 | export function buildAppPathSuccess( |
| 19 | appPath: string, |
no test coverage detected