Closed niallobrien closed 10 years ago
Are there any errors in the browser console after a file-change?
No errors, BrowserSync just doesn't refresh the browser after any changes. http://imgur.com/n2B3j7O
Can you remove any of these:
.pipe( browserSync.reload({ stream: true, once: true }) );
and do the one-time reload by passing reload
method as a task like this:
gulp.watch( cfg.js.src, ['browserify', browserSync.reload] );
Let me know if that helps, it's the prefered way of doing a one-time reload now
Hi, I have the following Gulpfile: https://gist.github.com/niallobrien/11324771 BrowserSync reports that it's injected the changed styles into the browser, but I have to manually refresh to see the changes. Any suggestions? Thanks.