【发布时间】:2015-08-15 08:08:20
【问题描述】:
我正在运行以下监视任务:
gulp.task('watch', function() {
gulp.watch('./ui/scss/*.scss', ['styles']);
gulp.watch('./js/*.js', '!./js/vendor/*.js', ['scripts']);
gulp.watch('./**/*.html', ['html']);
});
但是好像抛出如下错误?...
TypeError: Cannot assign to read only property 'mark' of !./js/vendor/*.js at new Gaze
【问题讨论】:
标签: gulp gulp-watch