Should this method work with gulp watch where it only compiles the files which have changed?
I've got three separate calls to mix.sass in my gulpfile, but even if I only change a file in one of them, then all three wait to be recompiled.
If I use the method above from roulendz of putting all three in an array, then it compiles all three into a single file.
Is there a way to process it where sass compiles everything in a given folder, where it just compiles everything with a full filename into the corresponding file in public\css, and ignores all the partial files which start with an underscore? So a.scssb.scss_mixins.scss_common.scss in a folder would make a.css and b.css.