Skip to content

Instantly share code, notes, and snippets.

@AlexandreBroudin
Created October 31, 2014 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexandreBroudin/20265edb48a3e17f5869 to your computer and use it in GitHub Desktop.
Save AlexandreBroudin/20265edb48a3e17f5869 to your computer and use it in GitHub Desktop.
bs
// BrowserSync
gulp.task('bs-serve', function(){
return browserSync.init("web/build/frontend/css/**", {
host: "http://host.dev"
});
});
gulp.task('bs-reload', function(){
return browserSync.reload({
stream: true
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment