Skip to content

Commit

Permalink
[BUGFIX] Keep development files out of the Composer packages (#678)
Browse files Browse the repository at this point in the history
[BUGFIX] Keep development files out of the Composer packages

Mark all development-only files and directories as `export-ignore`
via the `.gitattributes` file. This will keep them from being packaged
in the release ZIPs provided by GitHub and in the packages downloaded
by Composer with the `--prefer-dist` option (which is the default).
  • Loading branch information
oliverklee authored and JakeQZ committed Aug 30, 2019
1 parent 01c1b79 commit 80266bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/CODE_OF_CONDUCT.md export-ignore
/config/ export-ignore
/phpcs.xml.dist export-ignore
/tests/ export-ignore
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Removed

### Fixed
- Keep development files out of the Composer packages
([#678](https://github.com/MyIntervals/emogrifier/pull/678))
- Call all static methods statically in `CssConcatenator`
([#670](https://github.com/MyIntervals/emogrifier/pull/670))
- Support all HTML5 self-closing tags, including `<embed>`, `<source>`,
Expand Down

0 comments on commit 80266bb

Please sign in to comment.