Files
projet_gestion_commande/frontend-admin/node_modules/@expo/xcpretty
2026-05-01 22:28:13 +02:00
..
2026-05-01 22:28:13 +02:00
2026-02-07 22:33:02 +01:00
2026-05-01 22:28:13 +02:00
2026-02-07 22:33:02 +01:00

@expo/xcpretty

This can be used to parse and format xcodebuild logs. The default error and warning format matches that of other tools in the Expo ecosystem.

import { Formatter } from '@expo/xcpretty';

const formatter = new Formatter({ projectRoot: '/' });

const lines = formatter.pipe('xcodebuild log results...');

for (const line of lines) {
  console.log(line);
}