mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
Run livereload on changes to php files in the routes folder
This commit is contained in:
parent
5cf20c3424
commit
d295cf83f1
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ gulp.task("watch", function() {
|
||||||
gLiveReload.listen();
|
gLiveReload.listen();
|
||||||
gulp.watch(jsPublic, [ "js-public" ]).on("change", liveReloadUpdate);
|
gulp.watch(jsPublic, [ "js-public" ]).on("change", liveReloadUpdate);
|
||||||
gulp.watch(jsDashboard, [ "js-dashboard" ]).on("change", liveReloadUpdate);
|
gulp.watch(jsDashboard, [ "js-dashboard" ]).on("change", liveReloadUpdate);
|
||||||
gulp.watch([ "app/**/*.php", "resources/views/**/*.blade.php" ]).on("change", liveReloadUpdate);
|
gulp.watch([ "app/**/*.php", "routes/**/*.php", "resources/views/**/*.blade.php" ]).on("change", liveReloadUpdate);
|
||||||
|
|
||||||
gulp.watch("resources/assets/sass/**/*.scss", [ "sass-public", "sass-dashboard" ]).on("change", function() {
|
gulp.watch("resources/assets/sass/**/*.scss", [ "sass-public", "sass-dashboard" ]).on("change", function() {
|
||||||
liveReloadUpdate(1000);
|
liveReloadUpdate(1000);
|
||||||
|
|
Loading…
Reference in a new issue