我的 gulp 任务需要帮助。
从 PUG 编译 index.html 后,Gulp 监视任务不刷新浏览器。
这是我的 watch.js
var gulp = require('gulp'),
watch = require('gulp-watch'),
browserSync = require('browser-sync').create();
gulp.task('watch', function(){
browserSync.init({
notify: false,
server: {
baseDir: "app"
}
});
watch('./app/index.html', function(){
browserSync.reload();
});
watch('./app/assets/pug/*.pug', function(){
gulp.start('htmlRefresh');
});
});
gulp.task('htmlRefresh', ['pug'] ,function(){
browserSync.reload();
});
这是我的 pug.js
var gulp = require('gulp'),
pug = require('gulp-pug'),
notify = require('gulp-notify');
gulp.task('pug',function(){
return gulp.src('./app/assets/pug/*.pug')
.pipe(pug({ pretty: true }))
.on('error', notify.onError(function (error) {
return {
title: 'Pug',
message: error.message
}
}))
.pipe(gulp.dest('./app'));
});
在输出中,我在文件夹“./app/index.html”中得到编译的 HTML 代码。观看任务必须重新加载浏览器:
watch('./app/index.html', function(){
browserSync.reload();
});
但没有任何改变。错误在哪里?