Skip to content

Instantly share code, notes, and snippets.

@cungen
Last active October 16, 2015 11:36
Show Gist options
  • Save cungen/038d5e37cf0c680b4e1b to your computer and use it in GitHub Desktop.
Save cungen/038d5e37cf0c680b4e1b to your computer and use it in GitHub Desktop.
Gulp project build config.
var gulp = require('gulp'),
livereload = require('gulp-livereload');
gulp.task('watch', function() {
livereload.listen();
gulp.watch([
'**/**.html',
'**/**.css',
'**/**.js'
], function() {
livereload.reload();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment