我的 gulpfile 中有以下内容,并且 CSS 被编译,但没有添加或删除前缀。我究竟做错了什么?
// The task
// --------
gulp.task('autoprefix', function () {
var prefixr = autoprefixer({
browsers: ['last 2 versions', 'IE >=9'],
remove: true,
add: true
});
return gulp.src('app/styles/*.css')
.pipe(postcss([ prefixr ]))
.pipe(gulp.dest('app/styles'));
});
// Run watch
// --------
gulp.task('watch', function() {
gulp.watch('app/styles/**/*.less', { interval: 1000 }, ['less', 'autoprefix']);
});