Skip to content
This repository has been archived by the owner on Dec 14, 2020. It is now read-only.

Commit

Permalink
change gulpfile to watch all .php files
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Schmidt committed Jun 8, 2018
1 parent 92c8bab commit 54f9efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gulp.task('serve', function() {
});
gulp.watch('js/**/*.js', gulp.series('js'));
gulp.watch('scss/**/*.scss', gulp.series('sass'));
gulp.watch('*.php').on('change', browserSync.reload);
gulp.watch('**/*.php').on('change', browserSync.reload);
});

gulp.task('default', gulp.series('bootstrap','sass','js','serve'));
Expand Down

0 comments on commit 54f9efb

Please sign in to comment.