Index: gulpfile.js |
=================================================================== |
--- a/gulpfile.js |
+++ b/gulpfile.js |
@@ -71,32 +71,22 @@ |
{cleanupIDs: true} |
] |
}) |
])) |
.pipe(gulp.dest("./static/dist/img")); |
}); |
/****************************************************************************** |
- * Fonts |
- ******************************************************************************/ |
- |
-gulp.task("fonts", function() { |
- return gulp.src(["./static/src/fonts/**"]) |
- .pipe(gulp.dest("./static/dist/fonts")); |
-}); |
- |
-/****************************************************************************** |
* Watch |
******************************************************************************/ |
gulp.task("watch", function() { |
gulp.watch("./static/src/scss/**/*.scss", ["css"]); |
gulp.watch("./static/src/js/**/*.js", ["js"]); |
gulp.watch("./static/src/img/**", ["img"]); |
- gulp.watch("./static/src/fonts/**", ["fonts"]); |
}); |
/****************************************************************************** |
* Default |
******************************************************************************/ |
-gulp.task("default", ["css", "js", "img", "fonts", "watch"]); |
+gulp.task("default", ["css", "js", "img", "watch"]); |