How do I exclude paths in gulp?

One of the things that’s nice about gulp is that you can easily exclude paths when specifying the paths you would like to include by adding an exclamation before the path. The task below will include all scss files except if they are in the folder partials, since those will be included as needed.

gulp.task('sass', function () {
  return gulp.src('src/sass/**/*.scss', '!src/sass/partials/*.sass')
    .pipe(sass().on('error', sass.logError))
    .pipe(gulp.dest('./public/css'));
});

Back to Blog

Say Hello

You can reach me by email, I'd love to hear from you.