diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 965371e..243a663 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -46,6 +46,11 @@ function img() { .pipe(gulp.dest('./build/assets/img')); } +function pdf() { + return gulp.src('./resources/pdf/*') + .pipe(gulp.dest('./build/assets/pdf')); +} + function fonts() { gulp.src('./node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands*') .pipe(gulp.dest('./build/assets/webfonts')); @@ -63,9 +68,10 @@ function watch() { exports.css = css; exports.html = html; exports.img = img; +exports.pdf = pdf; exports.fonts = fonts; exports.watch = watch; -var build = gulp.parallel(css, html, img, fonts); +var build = gulp.parallel(css, html, img, pdf, fonts); gulp.task('build', build); gulp.task('default', build); |