Search code examples
javascriptdevelopment-environmentgulplivereload

Browsersync not syncing scroll


I am new to gulp and I'm trying to get browser-sync working. It seems to work fine except that the syncronised scroll is not working. Can anyone see what might be wrong with my setup.

var gulp = require('gulp'),
    jade = require('gulp-jade'),
    uglify = require('gulp-uglify'),
    gutil = require('gulp-util'),
    sass = require('gulp-sass'),
    livereload = require('gulp-livereload'),
    browserSync = require('browser-sync');

var outputDir = "builds/development";

gulp.task('jade', function() {
    return  gulp.src('src/templates/**/*.jade')
        .pipe(jade())
        .pipe(gulp.dest(outputDir))
        .pipe(livereload());
});

// Js - to uglify use gulp js --type production ( or just leave out js to build everything )
gulp.task('js', function() {
    return gulp.src('src/js/main.js')
        .pipe(gutil.env.type === 'production' ? uglify() : gutil.noop())
        .pipe(gulp.dest(outputDir + '/js'))
        .pipe(livereload());
});

// Sass - to compress use gulp sass --type production ( or just leave out sass to build everything )
gulp.task('sass', function() {
    var config = {};
    if ( gutil.env.type === 'production') {
        config.outputStyle = 'compressed';
    }
    return gulp.src('src/sass/main.scss')
        .pipe(sass(config))
        .pipe(gulp.dest(outputDir + '/css'))
        .pipe(livereload());
});

// Browser Sync ( not working 100% ... not scrolling )
gulp.task('browser-sync', function() {
    browserSync({
        proxy: "http://localsandbox.dev/gulptutorial/builds/development/"
    });
});




// Watch
gulp.task('watch', function() {
    gulp.watch('src/templates/**/*.jade', ['jade']);
    gulp.watch('src/js/**/*.js', ['js']);
    gulp.watch('src/sass/**/*.scss', ['sass']);
});


gulp.task('default', ['jade', 'js', 'sass', 'watch', 'browser-sync'], function () {
    gulp.watch("js/*.js", ['js', browserSync.reload]);
});

Solution

  • Your issue might be related to watching with both Gulp and BrowserSync. Here is a good reference to that:

    "You shouldn't watch files with BrowserSync + Gulp" https://github.com/shakyShane/gulp-browser-sync/issues/16#issuecomment-43597240

    So you would probably want remove livereload (let BrowserSync handle everything) and change your default Gulp task to something like this:

    gulp.task('default', ['jade', 'js', 'sass', 'browser-sync'], function () {
        gulp.watch('src/templates/**/*.jade', ['jade', browserSync.reload]);
        gulp.watch('src/js/**/*.js', ['js', browserSync.reload]);
        gulp.watch('src/sass/**/*.scss', ['sass', browserSync.reload]);
    });
    

    You could also try setting scroll explicitly (but it defaults to true anyway):

    gulp.task('browser-sync', function() {
        browserSync({
            proxy: "http://localsandbox.dev/gulptutorial/builds/development/"
            ghostMode: {
              scroll: true
            }
        });
    });