ssap_app/node_modules/@expo/xcpretty
ananyak19 f0453fc9f0 first commit 2026-01-18 17:57:34 +05:30
..
build first commit 2026-01-18 17:57:34 +05:30
node_modules first commit 2026-01-18 17:57:34 +05:30
README.md first commit 2026-01-18 17:57:34 +05:30
package.json first commit 2026-01-18 17:57:34 +05:30

README.md

@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);
}