Gulp-watch问题

时间:2018-03-26 17:42:29

标签: gulp gulp-watch

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

1 个答案:

答案 0 :(得分:0)

解决了它。我有一个额外的):

var aggregateOptions = new AggregateOptions{ AllowDiskUse = true};
var aggregateResult = collection.Aggregate(aggregateOptions);