summaryrefslogtreecommitdiffhomepage
path: root/gulpfile.js
diff options
context:
space:
mode:
authorCamil Staps2020-07-28 11:18:02 +0200
committerCamil Staps2020-07-28 11:18:02 +0200
commitf5546459319c86021ffcd5604dd1f610e7d3df4a (patch)
tree2050baa1ee8912cd020332941c576abb65b4d4ca /gulpfile.js
parentFormatting 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.js8
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);