gulp watch执行任务了日志显示执行任务了,但是目标文件夹内文件未改变



 /**
 * Created by lisheng on 15/6/21.
 */

var gulp = require('gulp');
var babel = require('gulp-babel');

gulp.task('babel', function () {
    return gulp.src('index.js')
        .pipe(babel())
        .pipe(gulp.dest('dist'));
});


gulp.task('watch', function() {
    gulp.watch('index.js', ['babel']);

});

这是我的配置文件。手动触发 gulp babel是可以的

clipboard.png

gulp babel JavaScript

九尾油豆腐 10 years, 1 month ago

https://github.com/babel/gulp-babel 看看官方的例子和你的有什么不同

垃圾改造人 answered 10 years, 1 month ago

Your Answer