What does it mean that gulp-ruby-sass doesn't work with globbing?

107 Views Asked by At

Pretty simple here, I understand the basics of the statement, but how do I work around this? I use lots of file globbing in my sass.

Please advise.

1

There are 1 best solutions below

0
On BEST ANSWER

So, this is basically because of how gulp treats individual files within a stream. Since, gulp-ruby-sass is just a wrapper for Ruby sass, you just need to pass the correct params into the gulp-sass function namely: {bundleExec: true, compass: true, and require "sass-globbing"}. after that, they all play nice.