Hi,
I have a folder with ton of .scss files and I want to import them only one line like @import "components/*";
but I can’t figure out how to do it. It is possible in Middleman?
Thanks.
Hi,
I have a folder with ton of .scss files and I want to import them only one line like @import "components/*";
but I can’t figure out how to do it. It is possible in Middleman?
Thanks.
You can get globbing support by adding these gems:
gem 'sass', '~> 3.4'
gem 'sass-globbing', '~> 1.1'
See https://github.com/middleman/middleman/issues/1627#issuecomment-196641429