I would like to know if it's possible to write just a name of a folder and every file inside would be automatically imported?
For example, I have a main.scss
which contains only imports
@import "components/forms";
@import "components/header";
@import 'components/intro';
and I would like to just write
@import "components/**/*";
So every file inside components
will be imported as above.
I can use sass-globbing
. It lets me import directories or whole directory trees with a single @import statement:
// import a directory's contents
@import 'dir/*';
// recursively import a directory's contents and any sub-directories:
@import 'dir/**/*';
I’ll install it from the command line
gem install sass-globbing
more here on Github plugin homepage.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With