Commit 8fe6a9a61ced3387d6b35b4fac7c23d286397fc0
1 parent
ffe25c64
Exists in
master
and in
8 other branches
Fix font task for build process
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
gulp/build.js
| ... | ... | @@ -68,7 +68,7 @@ gulp.task('html', ['inject', 'partials'], function () { |
| 68 | 68 | // Only applies for fonts from bower dependencies |
| 69 | 69 | // Custom fonts are handled by the "other" task |
| 70 | 70 | gulp.task('fonts', function () { |
| 71 | - return gulp.src($.mainBowerFiles()) | |
| 71 | + return gulp.src($.mainBowerFiles().concat('bower_components/bootstrap-sass-official/assets/fonts/bootstrap/*')) | |
| 72 | 72 | .pipe($.filter('**/*.{eot,svg,ttf,woff,woff2}')) |
| 73 | 73 | .pipe($.flatten()) |
| 74 | 74 | .pipe(gulp.dest(path.join(conf.paths.dist, '/fonts/'))); | ... | ... |