I have a situation where I need to compile two separate scss directories into a single css output file. When compiling a single directory, I would use the following command:
sass --watch scss/template.scss:css/template.css
Is there a way to combine two directories into the same css output file? Can I use a form of concatenation for this purpose? Perhaps something like:
sass --watch scss/template.scss + scss/override.scss:css/template.css
Does anyone know if there is a way to achieve this?