私の 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']);
});