gulp-sass-glob
gulp-sass-glob copied to clipboard
New sassModules option
Add the sassModules option for the new @use syntax.
When using:
sassGlob({sassModules: true})
The following:
@import 'folder/**/*.scss';
will be converted to:
@use 'folder/style-1.scss' as *; @use 'folder/style-2.scss' as *; @use 'folder/style-3.scss' as *;