make --depends generate no CSS output#2830
Merged
seven-phases-max merged 1 commit intoless:masterfrom Apr 12, 2016
Merged
Conversation
Member
|
I suspect not generating the output file with just the |
Contributor
Author
|
Okay, updated --depends to not generate output. |
Member
|
Thanks for the update. (I'm actually still in doubt if this can have some undesired side-effects, but since #2476 suggest the same, and it seems like nobody is going to comment this anyway (it's been a month the PR is hanging) - let's just merge and wait for issue reports when it's released :P). |
Member
|
Thanks! |
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.
I'm using
lesscwith Qt/C++ and up until recently I've just been regenerating the stylesheets, but I thought that this could be faster.I dug around and found the
dependsflag and it sped up my build process 0 to 💯 real quick.The only downside is that when lessc is invoked twice, it will generate output twice. I actually only need the dependencies with no output, and then at a later stage during
make, the actual output. I see here (#2476) that it's a nice to have feature, so here it is.The new option is
-Mnfor short or--depends-no-output. It will exercise the same code path asdependsbut skip the output stage ifdepends_no_outputistrue.