Closed denisborovikov closed 9 years ago
Thanks @denisborovikov!
This seems like a really useful feature, I'd be happy to merge. One thing though:
It might be nice to have this as an option instead of turned on by default? e.g. something like
gulp.task('css', function() {
return gulp
.src(srcDir + 'stylesheets/app.scss')
.pipe(bulkSass({
ignoreDirectories: '_*'
}))
.pipe(
sass({
includePaths: ['src/stylesheets']
}))
.pipe( gulp.dest('./public/css/') );
});
@mathisonian I'm not sure about that. Do you have normal directories in your projects started with underscore which you want to be compiled? I don't.
Alright, I buy that logic.
Ah! Just pushed v0.3.0
to npm https://www.npmjs.com/package/gulp-sass-bulk-import
It could be useful to ignore certain directories inside *.