gulp task fix and update dependencies

This commit is contained in:
David Miller
2019-05-29 14:48:37 -04:00
parent b812173c32
commit a749325221
6 changed files with 153 additions and 137 deletions

View File

@@ -127,7 +127,7 @@ function js() {
// Watch files
function watchFiles() {
gulp.watch("./scss/**/*", css);
gulp.watch("./js/**/*", js);
gulp.watch(["./js/**/*", "!./js/**/*.min.js"], js);
gulp.watch("./**/*.html", browserSyncReload);
}