Skip to content

Commit

Permalink
feat: Exclude unnecessary files from package
Browse files Browse the repository at this point in the history
Exclude image files, test files, and Sublime Text project files from the package to reduce the size and complexity of the distribution. This makes the package more lightweight and easier to use.
  • Loading branch information
RedAtman committed Jul 20, 2024
1 parent cb18e78 commit 81d52ca
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,18 @@
# # Set the merge tool for certain file types
# *.txt merge=
# *.json merge=

# Exclude all image files from the package
*.png export-ignore
*.jpg export-ignore
*.jpeg export-ignore
*.gif export-ignore
*.svg export-ignore

# Exclude test files and directories from the package
tests/* export-ignore
test/* export-ignore

# Exclude Sublime Text project and workspace files from the package
*.sublime-project export-ignore
*.sublime-workspace export-ignore

0 comments on commit 81d52ca

Please sign in to comment.