Skip to content

Instantly share code, notes, and snippets.

@volkanunsal
Last active August 29, 2015 14:06
Show Gist options
  • Save volkanunsal/6b2dfa819a1009aa7d95 to your computer and use it in GitHub Desktop.
Save volkanunsal/6b2dfa819a1009aa7d95 to your computer and use it in GitHub Desktop.
gulp = require('gulp');
lr = require('gulp-livereload');
gulp.task('watch', function() {
lr.listen()
dest = ["app/views/**","app/assets/**"];
gulp.watch(dest).on('change', function(file) {
lr.changed(file.path);
});
});
gulp.task('default', ['watch']);
{
"name": "Project",
"version": "0.0.0",
"description": "Deps of this project",
"main": "index.js",
"scripts": {
},
"license": "ISC",
"dependencies": {
"gulp": "*",
"gulp-livereload": "*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment