Is there a way to prevent grunt-contrib-less from compiling files that have an underscore?
I have a set of files which are being imported in the main file. The imported files have a been prefixed with an underscore @import "_fileone"
but because im using grunt with dynamic mapping, all .less files are being compiled - whereas im only interested in the main file.
You can create a second grunt task that process this underscore files with the option of no compress, mangler etc.
You could also separate this underscore and normal in two tasks, and have watch to look at both eventually