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);