Build Check
Build both platform targets and report results. Run this at logical checkpoints — after completing a subtask, before committing, or whenever you want to verify the project compiles.
- •Build iOS:
xcodebuild -project Yiana/Yiana.xcodeproj -scheme Yiana -destination 'generic/platform=iOS' -quiet build 2>&1 | tail -10 - •Build macOS:
xcodebuild -project Yiana/Yiana.xcodeproj -scheme Yiana -destination 'platform=macOS' -quiet build 2>&1 | tail -10 - •Report: show pass/fail for each target. If either fails, show the errors.
- •Do NOT proceed with further edits if a build is broken — fix it first.