From 2009419a5ddf8c5791afe9c8d8a76e5f0b6f2518 Mon Sep 17 00:00:00 2001 From: Austin Pray Date: Fri, 16 Jan 2015 00:20:23 -0600 Subject: [PATCH] Fixes watch task --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b3579af..28dba1d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -116,8 +116,8 @@ gulp.task('clean', require('del').bind(null, [path.dist])); gulp.task('watch', function() { $.livereload.listen(); - gulp.watch([path.src + 'styles/**/*', 'bower.json'], ['styles']); - gulp.watch([path.src + 'scripts/**/*', 'bower.json'], ['jshint', 'scripts']); + gulp.watch([path.source + 'styles/**/*'], ['styles']); + gulp.watch([path.source + 'scripts/**/*'], ['jshint', 'scripts']); gulp.watch(['bower.json'], ['wiredep']); gulp.watch('**/*.php').on('change', function(file) { $.livereload.changed(file.path);