Add gitattributes to reduce unnecessary files from composer installs. - #2
Closed
jdufresne wants to merge 2 commits into
Closed
Add gitattributes to reduce unnecessary files from composer installs.#2jdufresne wants to merge 2 commits into
jdufresne wants to merge 2 commits into
Conversation
Owner
|
see symfony/symfony#5674, it was the case some time ago and it was reverted. |
|
I would like to see this change. =/ I don't see why those who wants the docs could not just use clone or composer.....--prefer-source Not adding this means i manually have to go throw vendors deleting unneeded "crap" when building for deployment... not every host out there allow for uploading packages of huge size for installs. in some case 2 MB is max size and is really do from time to time. so i agree with: |
Owner
|
Closing as this PR is on the wrong repo. Someone else opened a PR on the official repo (twigphp#1776) |
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.
When using the composer argument
--prefer-dist, git archives will be used. This reduces files that are typically useless when using Twig as a library, as opposed to developing it. When using Twig as a library, and deploying, tests and raw documentation are unnecessary. When developing Twig, the preferred method is a git clone, and will continue to work properly.