fix: use exact grep patterns for build_runner and flutter pub get (#136) #159

Merged
guettlibot merged 1 commits from issue-136-fix into main 2026-05-23 15:25:10 +00:00
guettlibot commented 2026-05-23 08:39:04 +00:00 (Migrated from codeberg.org)

Summary

  • Narrow build_runner output filter from ^\[ to ^\[.*s\] \| so only compilation-progress lines (e.g. [1.2s] | building foo.g.dart) are suppressed; bracket-prefixed errors and info still pass through
  • Change flutter pub get filter from ^[+~><] to ^(\+|Downloading packages) to also suppress the "Downloading packages" header line
  • Apply the updated build_runner filter to scripts/check_mocks_fresh.sh for consistency with local runs
  • git commit -q in CheckMocks and flutter test summary-only output were already in place from prior work

These are the exact patterns specified in issues #124 and #128.

Test plan

  • Pre-commit hooks (dart format, check-fast) passed locally
  • CI (task check-dagger) should pass on the runner

🤖 Generated with Claude Code

## Summary - Narrow `build_runner` output filter from `^\[` to `^\[.*s\] \|` so only compilation-progress lines (e.g. `[1.2s] | building foo.g.dart`) are suppressed; bracket-prefixed errors and info still pass through - Change `flutter pub get` filter from `^[+~><] ` to `^(\+|Downloading packages)` to also suppress the "Downloading packages" header line - Apply the updated `build_runner` filter to `scripts/check_mocks_fresh.sh` for consistency with local runs - `git commit -q` in `CheckMocks` and `flutter test` summary-only output were already in place from prior work These are the exact patterns specified in issues #124 and #128. ## Test plan - [ ] Pre-commit hooks (`dart format`, `check-fast`) passed locally - [ ] CI (`task check-dagger`) should pass on the runner 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Sign in to join this conversation.