Skip to content

Instantly share code, notes, and snippets.

@biwin
Created November 18, 2015 15:41
Show Gist options
  • Save biwin/2b76250724d4e30dd729 to your computer and use it in GitHub Desktop.
Save biwin/2b76250724d4e30dd729 to your computer and use it in GitHub Desktop.
gulp-livereload reload on any filechange
var gulp = require('gulp'),
livereload = require('gulp-livereload');
gulp.task('default', function() {
livereload.listen();
gulp.watch(['**']).on('change', livereload.changed);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment