feat: developer tooling - bundle size, coverage, dep automation, dev env - #780
Merged
Smartdevs17 merged 1 commit intoAug 28, 2026
Merged
Conversation
|
@Marvy247 is attempting to deploy a commit to the smartdevs17's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@Marvy247 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements developer tooling requested in issues #762, #763, #764 and #765.
Implement bundle size monitoring with regression alerts #762 Bundle size monitoring with regression alerts
.size-limit.json: size budgets for framework/app chunks and CSS..github/workflows/size-limit.yml: builds the frontend and posts size regression comments on PRs via size-limit-action, plus enforces existing bundle budgets.frontend/next.config.ts: emitssize-limit-stats.jsonwhenSIZE_LIMIT=truefor size analysis.Implement code coverage reporting with threshold enforcement #763 Code coverage reporting with threshold enforcement
frontend/vitest.config.ts: enabled lcov reporter, reports dir, exclusions and 80% thresholds (lines/branches/functions/statements)..github/workflows/coverage.yml: runs coverage and uploads to Codecov.codecov.yml: Codecov target/patch thresholds and PR comment config.Implement dependency update automation with Renovate/Dependabot #764 Dependency update automation (renovate/dependabot)
renovate.json: Renovate configuration with weekly schedule, grouping and lockfile maintenance..github/dependabot.yml: addedworkers,sdksandgithub-actionsecosystems.Implement local development environment with hot reload and orchestration #765 Local development environment with hot reload and orchestration
docker-compose.yml: addedbackendandfrontenddev services with volume mounts +develop.watchfor hot reload.scripts/dev.sh: orchestration helper (up/down/logs/ps/restart/seed/watch).Test plan
Developer tooling only; no runtime code paths changed. CI workflows validate the configuration on PRs.
Closes #762
Closes #763
Closes #764
Closes #765