diff options
author | Camil Staps | 2018-05-21 15:21:13 +0200 |
---|---|---|
committer | Camil Staps | 2018-05-21 15:21:13 +0200 |
commit | e9e2c1ff3cc47f48e6d7e2a6c9bfcd7dacd0d848 (patch) | |
tree | 4006977b000f064f2a0e0f83c2a53dccdc7aa7e3 /gulpfile.js | |
parent | Update education plans (diff) |
Remove "freelance programmer"; add SBL Hebrew font
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')); +}); |