Last active
October 16, 2015 11:36
-
-
Save cungen/038d5e37cf0c680b4e1b to your computer and use it in GitHub Desktop.
Gulp project build config.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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