Closed barbuslex closed 9 years ago
Hi,
Can you tell me the equivalent code for the new version of gulp-livereload :
var server = livereload(); gulp.watch(dest + '/**').on('change', function(file) { server.changed(file.path); });
When i use it i take this error message :
server.changed(file.path); -----------^ TypeError: Object # has no method 'changed'
How can i solve it ?
Thanks
livereload.listen(); gulp.watch(dest + '/**').on('change', livereload.changed);
Thanks so much <3
Thank you vohof, I have a similar case.
Thank you @vohof !
Hi,
Can you tell me the equivalent code for the new version of gulp-livereload :
When i use it i take this error message :
How can i solve it ?
Thanks