diff options
author | Camil Staps | 2020-05-01 13:56:06 +0200 |
---|---|---|
committer | Camil Staps | 2020-05-01 13:56:06 +0200 |
commit | 9cae9bf605f9e6548676e8fe4067ab59a0743d93 (patch) | |
tree | 8dd1d4d766c9863504fc02b6afc47256e13db2cb /gulpfile.js | |
parent | Obfuscate email address (diff) |
Use brand icons for Academia.edu, Twitter, GitHub, and LinkedIn links
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 5ec8951..965371e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,7 +16,9 @@ function css() { outputStyle: 'compressed', includePaths: [ './resources/sass', - './node_modules/bootstrap-sass/assets/stylesheets' + './node_modules/bootstrap-sass/assets/stylesheets', + './node_modules/@fortawesome/fontawesome-free/scss', + './node_modules/academicons/css' ] }) .on('error', notify.onError(function (error) { @@ -45,6 +47,10 @@ function img() { } function fonts() { + gulp.src('./node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands*') + .pipe(gulp.dest('./build/assets/webfonts')); + gulp.src('./node_modules/academicons/fonts/*') + .pipe(gulp.dest('./build/assets/fonts')); return gulp.src('./resources/fonts/*') .pipe(gulp.dest('./build/assets/fonts')); } |