diff options
author | Camil Staps | 2020-07-28 11:18:02 +0200 |
---|---|---|
committer | Camil Staps | 2020-07-28 11:18:02 +0200 |
commit | f5546459319c86021ffcd5604dd1f610e7d3df4a (patch) | |
tree | 2050baa1ee8912cd020332941c576abb65b4d4ca /gulpfile.js | |
parent | Formatting of the homepage header: center text next to the profile picture; m... (diff) |
Update information about IFL paper
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); |