So, I'm trying to set up an environment in which I can generate a new project and minimize the setup / complexity associated with setting up this new project. I use Structurer Pro (from nettuts +) to create a set of files, and this is an awesome thing. I have github to configure MAC, which allows me to grab the latest Foundation Foundation frameworks and put them in the current project.
Now I am also trying to include LESS in this process. However, css Foundation files are not currently configured using LESS, which means I have 2 options ... (1) take the current version and LESS-ize, and then use these customized files to create new projects. (2) do not use LESS ...
Another problem I ran into is apparently quite a few LESS compilers (simpLESS, CodeKit, LESS, compass), but none of them merge css files! Therefore, if I configured 10 LESS files (e.g. IE.less, mobile.less, grid.less, typography.less, etc.), and they have variables in them, I really don't want the output as there were 10 css files. I really need 1 compiled css file as output. I know that I can do it manually or even through Clean css or any of 30 other sites ...
But is there one thing that will allow me to use the latest files to create the project framework, customize it by applying a set of color swatches to a series of variables (LESS), and then compile and combine the resulting CSS for the actual implementation?
source share