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.
Reasons for making this change
This update excludes the
dist/
andbuild/
directories from version control.Why:
build/
: This folder is generated when running vite build in SvelteKit apps. It’s a temporary output used for deployment and doesn’t need to be tracked in Git.dist/
: This is commonly used in Svelte libraries or packages as the output directory for compiled code. Like build/, it’s a generated artifact and should not be committed.Tracking these folders can cause unnecessary noise in the repository, potential merge conflicts, and confusion over what’s source vs. what’s generated.
These directories should be reproducible from source using build commands (pnpm build, turbo build, etc.), so there’s no need to keep them in version control.
Links to documentation supporting these rule changes
Merge and Approval Steps