Gulp浏览器同步仅适用

时间:2015-04-22 14:41:34

标签: javascript gulp gulp-watch gulp-less

我在我的一个项目上尝试了Gulp,我想像Grunt手表一样运行它。这意味着,一旦完成所有操作,它必须观察较少的文件和js文件,lint,合并,编译和刷新浏览器。

我设法使用gulp-browser-sync工作,但由于某种原因它只能工作一次。我对我的.less文件进行了更改,浏览器重新加载。然后,第二次更改,它确实编译但没有重新加载。

这是日志:

[BS] Serving files from: ./
[09:47:26] Starting 'css-clean'...
[09:47:26] Finished 'css-clean' after 16 ms
[09:47:26] Starting 'styles'...
[BS] 1 file changed (styles.min.css)
[09:47:27] Finished 'styles' after 624 ms
[09:47:27] Starting 'styles-watch'...
[BS] Reloading Browsers...

当我第二次点击保存时:

[09:47:31] Starting 'css-clean'...
[09:47:31] Finished 'css-clean' after 3.39 ms
[09:47:31] Starting 'styles'...
[BS] 1 file changed (styles.min.css)
[09:47:32] Finished 'styles' after 362 ms

至于JS,它一直有效。没有任何问题,即使在完成样式任务之后,JS更改仍然会正确地触发重新加载。真的只是有问题的风格。

这是gulpfile.js

var gulp = require('gulp'),
    autoprefixer = require('gulp-autoprefixer'),
    less = require('gulp-less'),
    minifycss = require('gulp-minify-css'),
    concat = require('gulp-concat'),
    jshint = require('gulp-jshint'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename'),
    notify = require('gulp-notify'),
    path = require('path'),
    streamqueue = require('streamqueue'),
    clean = require('gulp-clean'),
    browserSync = require('browser-sync').create(),
    reload = browserSync.reload;


// Clean the CSS folder
gulp.task('css-clean', function () {
    return gulp.src(['dist/css'], {read: false})
        .pipe(clean());
});

// Clean the CSS folder
gulp.task('js-clean', function () {
    return gulp.src(['dist/js'], {read: false})
        .pipe(clean());
});


// Generate the CSS styles, clean before hand
gulp.task('styles', ['css-clean'], function() {
  return streamqueue({ objectMode: true },
            gulp.src(['./bower_components/uikit/less/uikit.less']),
            gulp.src(['./src/less/main.less'])
        )
    .pipe(concat('styles.less'))
    .pipe(less({
      paths: [ path.join(__dirname, 'less', 'includes') ]
    }))
    .pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
    .pipe(gulp.dest('dist/css'))
    .pipe(rename({suffix: '.min'}))
    .pipe(minifycss())
    .pipe(gulp.dest('dist/css'))
    .pipe(browserSync.reload({stream:true}));
});

// create a task that ensures the `styles` task is complete before
// reloading browsers
gulp.task('styles-watch', ['styles'], browserSync.reload);



// Lint Task
gulp.task('lint', function() {
    return gulp.src('src/js/*.js')
        .pipe(jshint())
        .pipe(jshint.reporter('default'));
});


// Generate the scripts, clean before hand
gulp.task('scripts', ['js-clean', 'lint'], function() {
  return streamqueue({ objectMode: true },
            gulp.src(['./bower_components/jquery/dist/jquery.js']),
            gulp.src(['./bower_components/modernizer/modernizr.js']),
            gulp.src(['./bower_components/uikit/js/uikit.js']),
            gulp.src(['./src/js/plugin.js']),
            gulp.src(['./src/js/main.js'])
        )
    .pipe(concat('scripts.js'))
    .pipe(gulp.dest('dist/js'))
    .pipe(rename({suffix: '.min'}))
    .pipe(uglify())
    .pipe(gulp.dest('dist/js'))
    .pipe(browserSync.reload({stream:true}));
});

// create a task that ensures the `scripts` task is complete before
// reloading browsers
gulp.task('scripts-watch', ['scripts'], browserSync.reload);


// Lint Task
gulp.task('alldone', ['scripts'], function() {
    return gulp.src('src/js/*.js')
               .pipe(notify({ message: 'Gulp tasks are completed!!' }));
});


// Static server
gulp.task('browsersync', function() {
    browserSync.init({
        server: {
            baseDir: "./"
        }
    });

    gulp.watch("src/less/*.less", ['styles-watch']);
    gulp.watch('src/js/*.js', ['lint', 'scripts-watch']);
    gulp.watch("*.html").on('change', reload);
});


// Default Task
gulp.task('default', ['css-clean', 'js-clean', 'styles', 'lint', 'scripts', 'alldone']);

// Build Task
gulp.task('build',   ['css-clean', 'js-clean', 'styles', 'lint', 'scripts', 'alldone']);

感谢您的帮助!

6 个答案:

答案 0 :(得分:23)

如何直接使用

.pipe(browserSync.stream())

我在更改'.jade'文件时遇到了同样的问题,它只重新加载一次。然后我将 browserSync.reload 包装在像

这样的匿名函数中
gulp.task('templates-watch', ['templates'], function() {
    browserSync.reload();
});

它对我有用。我不知道 browserSync.reload 是否有什么特别之处。怎么样试一试。 :)

答案 1 :(得分:14)

对于我在Gulp 4中,匿名函数没有解决问题,我所做的是将browserSync.reload()包装在带有完成回调的函数中:

function reload(done) {
  browserSync.reload();
  done();
}

gulp.watch(['scripts/**/*.js','!scripts/main.min.js'], gulp.series(buildScripts, reload));

答案 2 :(得分:1)

我知道这不是正确的处理方法,但是经过反复试验,我发现在browserSync.reload()之后使用未定义的函数

gulp.watch("./**/*.php", function () {
    browserSync.reload();
    done();
});

导致我的日志中出现参考错误,从而触发重新加载浏览器:

ReferenceError: done is not defined 
    at ...
    at ...
    at asyncRunner (...)
    at processTicksAndRejections (...)
[Browsersync] Reloading Browsers...

答案 3 :(得分:0)

您确定浏览器中的CSS未更改吗?无需重新加载页面即可加载新样式。至少这是我的gulp设置正在做的事情。

尝试更改.less文件,并查看更改是否在浏览器中实际可见。

答案 4 :(得分:0)

我的情况有点不同,但它可能类似于对您或其他人有帮助。我有这样的gulp + browserSync设置:

.task('serve', ['clean', 'lint', 'sass', 'js', 'server'], function () {
  return gulp.watch([paths.js, paths.html, paths.sass], 
    ['lint', 'sass', 'js', browserSync.reload]);
})

这会启动并打开一次页面。如果我对HTML页面进行了更改并保存,我可以看到lint,sass,js和browserSync.reload运行,但浏览器没有刷新。我的HTML非常简单;这样:

<!doctype html>
<html>
TEST
</html>

我最终将HTML更改为此内容并开始工作:

<!doctype html>
<html>
<head>
    <title>TEST</title>
</head>
<body>
HELLO-TEST
</body>
</html>

答案 5 :(得分:0)

我面临着同样的问题。看起来在node_modules中的'asyncDone'函数存在问题。这是文件路径:/node_modules/glob-watcher/index.js

以下只是临时修复的肮脏技巧。有时您可能会遇到问题。但为我工作。

function onChange() {
  console.log("onChange running: ", running);

  /** existing code */

  // keeping this function at it worked for me.
  setTimeout(() => {
     runComplete({msg: "test"});
  }, 2000);
}