gulp-watch我遇到了一个小问题。当我更改样式文件夹(.css文件)中的某些内容时,手表不会触发。我只是不想把副本写到另一个文件夹。 html任务工作正常,但css不会触发。还有我在ubuntu中做的所有编程,如果这有任何区别。
var gulp = require('gulp');
gulp.task('html', function(){
console.log("Changes have been made to the html file!");
});
gulp.task('styles', function(){
return gulp.src('./app/assets/styles/styles.css').pipe(gulp.dest('./app/assets/temp/styles'));
});
gulp.task('watch', function() {
gulp.watch('./app/index.html', function(){
gulp.start('html');
});
gulp.watch('app/assets/styles/**/*.css'), function(){
gulp.start('styles');
};
});
答案 0 :(得分:0)
解决了它。我有一个额外的):
var aggregateOptions = new AggregateOptions{ AllowDiskUse = true};
var aggregateResult = collection.Aggregate(aggregateOptions);