build(export): exclude unnecessary files from dist package #696
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.
Description
As I was analyzing files in my project's
vendor/
directory, I noticed there were a lot of files included for auth0/auth0-php, since it doesn't have a.gitattributes
file telling GitHub what to exclude from the exported zipped files (that Composer downloads).By including a
.gitattributes
file that excludes files that aren't necessary for dependents, we save space and bandwidth.This only affects the zipped files exported from GitHub (i.e.,
.zip
and.tar.gz
), which are primarily used by package managers (i.e., Composer) when installing project dependencies.At a high level, here's what the directory looks like before this change:
And here's what it looks like after this change:
Type of change
Checklist
I have commented my code, particularly in hard-to-understand areasn/aI have made corresponding changes to the documentationn/aI have added tests that prove my fix is effective or that my feature worksn/a