I use Scss (gulp-sass) and it's a long list of includes that looks kind of like this:
@import '../../snippets/menu/menu.scss';
@import '../../snippets/footer/footer.scss';
@import '../../snippets/hero/hero.scss';
From this I can see a pattern. My question is if there is a nice way to make it simpler to write. Maybe something like this?
import('menu');
import('footer');
import('hero');
The output for scss should still be like the first snippet.