summaryrefslogtreecommitdiffhomepage
path: root/gulpfile.js
diff options
context:
space:
mode:
authorCamil Staps2018-05-21 15:21:13 +0200
committerCamil Staps2018-05-21 15:21:13 +0200
commite9e2c1ff3cc47f48e6d7e2a6c9bfcd7dacd0d848 (patch)
tree4006977b000f064f2a0e0f83c2a53dccdc7aa7e3 /gulpfile.js
parentUpdate education plans (diff)
Remove "freelance programmer"; add SBL Hebrew font
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
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'));
+});