Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

Commit

Permalink
Include all FA fonts so that they get included
Browse files Browse the repository at this point in the history
  • Loading branch information
David Haynes committed Jun 10, 2018
1 parent eef2f52 commit 429e754
Show file tree
Hide file tree
Showing 14 changed files with 3,368 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.idea
components
node_modules
build
_site
.sass-cache/
# swap
Expand All @@ -23,7 +22,6 @@ masonstrap/*.map
.idea
components
node_modules
build
_site
.sass-cache/
bower_components
Expand All @@ -38,4 +36,9 @@ public/assets/fonts/*.svg
public/assets/fonts/*.ttf
public/assets/fonts/*.woff
public/assets/fonts/*.woff2
public/assets/fonts/*.otf
public/assets/fonts/*.otf
build/img
build/demo.html
build/index.html
build/css/masonstrap.css
build/js/masonstrap.js
Binary file added build/fonts/fa-brands-400.eot
Binary file not shown.
1,100 changes: 1,100 additions & 0 deletions build/fonts/fa-brands-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/fonts/fa-brands-400.ttf
Binary file not shown.
Binary file added build/fonts/fa-brands-400.woff
Binary file not shown.
Binary file added build/fonts/fa-regular-400.eot
Binary file not shown.
368 changes: 368 additions & 0 deletions build/fonts/fa-regular-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/fonts/fa-regular-400.ttf
Binary file not shown.
Binary file added build/fonts/fa-regular-400.woff
Binary file not shown.
Binary file added build/fonts/fa-solid-900.eot
Binary file not shown.
1,892 changes: 1,892 additions & 0 deletions build/fonts/fa-solid-900.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/fonts/fa-solid-900.ttf
Binary file not shown.
Binary file added build/fonts/fa-solid-900.woff
Binary file not shown.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const all_js = ['./node_modules/jquery/dist/jquery.min.js',

// Move fonts to build/fonts
gulp.task('fonts', () => {
let fa = gulp.src('./node_modules/@fortawesome/fontawesome-free-webfonts/webfonts/*.woff2')
let fa = gulp.src('./node_modules/@fortawesome/fontawesome-free-webfonts/webfonts/*')
.pipe(gulp.dest(dest + '/fonts/'))

return merge(fa).pipe(connect.reload())
Expand Down Expand Up @@ -81,4 +81,4 @@ gulp.task('http', () => {
gulp.task('build', ['sass', 'html', 'img', 'js', 'fonts']);

// By default, run all tasks and then rebuild on changes
gulp.task('default', ['http', 'build', 'watch']);
gulp.task('default', ['http', 'build', 'watch']);

0 comments on commit 429e754

Please sign in to comment.