当我在项目的根目录中对index.html进行更改时,我正在尝试更新浏览器。更新CSS时,Livereloading工作正常。 我已经删除了我在gulpfile.js中使用的工作,下面......
谢谢!
var gulp = require('gulp'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
minifycss = require('gulp-minify-css'),
jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),
clean = require('gulp-clean'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
cache = require('gulp-cache'),
livereload = require('gulp-livereload'),
lr = require('tiny-lr'),
server = lr();
gulp.task('styles', function() {
return gulp.src('components/sass/style.scss')
.pipe(sass({ style: 'expanded' }))
.pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
.pipe(gulp.dest(''))
.pipe(rename({suffix: '.min'}))
.pipe(minifycss())
.pipe(gulp.dest(''))
.pipe(livereload(server))
.pipe(notify({ message: 'Styles task complete' }));
});
gulp.task('scripts', function() {
return gulp.src('components/js/*.js')
// .pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default'))
.pipe(concat('main.js'))
.pipe(gulp.dest('js'))
.pipe(rename({suffix: '.min'}))
.pipe(uglify())
.pipe(gulp.dest('js'))
.pipe(livereload(server))
.pipe(notify({ message: 'Scripts task complete' }));
});
gulp.task('images', function() {
return gulp.src('components/img/*')
.pipe(imagemin({ optimizationLevel: 5, progressive: true, interlaced: true }))
.pipe(gulp.dest('img'))
.pipe(livereload(server))
.pipe(notify({ message: 'Images task complete' }));
});
// gulp.task('clean', function() {
// return gulp.src(['css', 'js', 'img'], {read: false})
// .pipe(clean());
// });
gulp.task('watch', function() {
server.listen(35729, function (err) {
if (err) {
return console.log(err)
};
// Watch .scss files
gulp.watch('components/sass/*.scss', ['styles']);
// Watch .js files
gulp.watch('components/js/*.js', ['scripts']);
// Watch image files
gulp.watch('components/img/*', ['images']);
});
});
// gulp.task('default', ['clean'], function() {
gulp.task('default', function() {
gulp.start('styles', 'scripts', 'images');
});
答案 0 :(得分:4)
您可以尝试将html文件放入components/html
这样的子文件夹中,并使用类似于样式任务的任务:
gulp.task('html', function() {
return gulp.src('components/html/**/*.html')
.pipe(gulp.dest(''))
.pipe(livereload(server))
.pipe(notify({ message: 'HTML task complete' }));
});
您的默认任务应如下所示:
// gulp.task('default', ['clean'], function() {
gulp.task('default', function() {
gulp.start('styles', 'scripts', 'images', 'html');
});
修改您的观看任务:
gulp.task('watch', function() {
server.listen(35729, function (err) {
if (err) {
return console.log(err)
};
// Watch .scss files
gulp.watch('components/sass/*.scss', ['styles']);
// Watch .js files
gulp.watch('components/js/*.js', ['scripts']);
// Watch image files
gulp.watch('components/img/*', ['images']);
// Watch html files
gulp.watch('components/html/**/*.html', ['html']);
});
});
侨 拉尔夫
答案 1 :(得分:2)
使用当前gulp语法在项目根目录中手动浏览器同步重新加载特定文件类型,截止日期为4/2016:
https://www.browsersync.io/docs/gulp/#gulp-manual-reload
示例:在SCSS参考下面添加行,以使用browser-sync:
观看HTML和HTM文件gulp.watch("./scss/*.scss", ['sass']);
gulp.watch("*.html").on("change", reload);
gulp.watch("*.htm").on("change", reload);
答案 2 :(得分:1)
可能有更好的方法来做你想做的事。
您是否考虑过使用express
livereload
的实例?
另一种方法是使用gulp-connect
,这将使您尝试做的更容易。在任何一种情况下,不是在任务中调用livereload
,而是在设置服务器的任务中处理实时重载。一般的想法是,您在文件上设置一个想要实时重载的监视任务,然后重新加载更改。
gulp.task('serve', function(event) {
connect.server({
root: destinations.docs,
port: 1987,
livereload: true
});
// sets up a livereload that watches for any changes in the root
watch({glob: [sources.html, sources.styles]})
.pipe(connect.reload());
});
我已尝试过这两种方式,gulp-connect
是一个更容易的选择。无论如何,我已经写了两个gulp样板,您可以在https://github.com/jh3y/gulp-boilerplate-v2和https://github.com/jh3y/gulp-boilerplate看到。
希望有所帮助!
答案 3 :(得分:1)
如果您不想使用livereload或express实例,您可以执行以下操作,我在laravel 5项目中使用elixir gulp扩展名并结合live.js。
延长灵药
elixir.extend('livereloader',function(message) {
gulp.task('livereloader',function(){
return gulp.src('public/js/livereloader.js')
.pipe(insert.append(''))
.pipe(gulp.dest('public/js/'));
});
this.registerWatcher("livereloader", 'resources/views/**/*.php');
return this.queueTask('livereloader');
});
使用任务
mix.livereloader();
够简单。即使没有livereload或express(不明白为什么我应该使用它们......)