konitter / gulp-combine-media-queries

MIT License
92 stars 28 forks source link

Broke sequence #27

Open Air-Petr opened 7 years ago

Air-Petr commented 7 years ago

I have some strange behavior after combining queries. Look at those images:

See the sequence has broken. My task is:

gulp.task('sass', function() {
  return gulp.src('sass/**/*.s+(a|c)ss')
    .pipe(sass())
    .pipe(cmq())
    .pipe(gulp.dest('css'))
});

Why this can be? I don't know what I'm doing wrong.