I was wondering if it's possible to force grunt to compile LESS even if there is an error?
The reason I ask is I'm outputting settings from the interface (Moodle) into less so that they can be changed by users. When I try to see a colour or do some math it throws errors because it's either expecting an RGBA value or a number value.
An example of the syntax would be:
div{background-color: rgba(0,0,0,~"[[setting:blockboxshadowalpha]]");}
This works fine if I put it directly into the compiled CSS but fails when using the rgba() function or doing something like the following:
a:hover{color: darken(~"[[setting:linkcolor]]", 20%);}