diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 82f3d19..891a759 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,7 +17,7 @@ gulp.task('watch', function() { gulp.watch(config.pugPath + '/**/*.pug', ['pug']); }); -gulp.task('default', ['bower', 'css', 'pug', 'img']); +gulp.task('default', ['bower', 'css', 'pug', 'img', 'fonts']); gulp.task('bower', function() { return bower() @@ -57,3 +57,8 @@ gulp.task('img', function() { return gulp.src('./resources/img/*') .pipe(gulp.dest('./build/assets/img')); }); + +gulp.task('fonts', function() { + return gulp.src('./resources/fonts/*') + .pipe(gulp.dest('./build/assets/fonts')); +}); |