Combining all Less files into a single stylesheet?
After following the instructions in the above link, I have successfully merged my Less files together for easier CSS reading during development. However, I would like to ensure that end users only need to make one HTTP request for the minimized file...
Is there a way to automatically update the combined.less file, which currently includes the following imports:
@import url('one.less');
@import url('two.less');
@import url('three.less');
@import url('four.less');
Whenever one of the imported files is edited?
I am utilizing with VS2012.
Note: I would be satisfied if this recompilation occurs only during publishing/building, but it would be even better if it could recompile upon saving.