我正在尝试让 livereload 在 gulp.js 中工作。我的浏览器中有 livereload 扩展。这是我的 gulpfile.js。任何人都可以看到任何问题。我尝试了许多变体并观看了许多视频和教程。我正在运行 ampps,这是一个 wordpress 安装
var gulp = require('gulp'),
livereload = require('gulp-livereload');
lr = require('tiny-lr');
server = lr();
gulp.task('styles', function() {
return gulp.src('style.css')
.pipe(livereload(server))
.pipe(gulp.dest('./'))
});
// Watch
gulp.task('watch', function() {
// // Listen on port 35729
server.listen(35729, function (err) {
if (err) {
return console.log(err)
};
// Watch .scss files
gulp.watch('style.css', ['styles']);
});
});
// Default task
gulp.task('default', ['styles', 'watch']);
......
编辑: 对于任何对完成文件感兴趣的人,我最终在 Ghidello 的回答的帮助下完成了以下工作:
var gulp = require('gulp'),
livereload = require('gulp-livereload');
gulp.task('styles', function() {
return gulp.src('style.css')
.pipe(livereload())
});
// Watch
gulp.task('watch', function() {
livereload.listen();
gulp.watch('style.css', ['styles']);
});
// Default task
gulp.task('default', ['styles', 'watch']);