| Index: gulpfile.js |
| =================================================================== |
| --- a/gulpfile.js |
| +++ b/gulpfile.js |
| @@ -71,38 +71,28 @@ |
| {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"]); |
| }); |
| /****************************************************************************** |
| * Build |
| ******************************************************************************/ |
| -gulp.task("build", ["css", "js", "img", "fonts"]); |
| +gulp.task("build", ["css", "js", "img"]); |
| /****************************************************************************** |
| * Default |
| ******************************************************************************/ |
| gulp.task("default", ["build", "watch"]); |