From 5da123e0d03b8b2fac7148a33f7e32bffac5d427 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Tue, 26 Jan 2016 15:40:31 -0300 Subject: [PATCH] Fix inclusion of font awesome --- bower.json | 6 ++++++ gulp/build.js | 1 + 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/bower.json b/bower.json index 285601e..730a58d 100644 --- a/bower.json +++ b/bower.json @@ -41,6 +41,12 @@ "assets/fonts/bootstrap/glyphicons-halflings-regular.woff", "assets/fonts/bootstrap/glyphicons-halflings-regular.woff2" ] + }, + "font-awesome": { + "main": [ + "scss/font-awesome.scss", + "fonts/*" + ] } }, "resolutions": { diff --git a/gulp/build.js b/gulp/build.js index fb8ec84..2c726b4 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -53,6 +53,7 @@ gulp.task('html', ['inject', 'partials'], function () { .pipe(cssFilter) .pipe($.sourcemaps.init()) .pipe($.replace('../../bower_components/bootstrap-sass/assets/fonts/bootstrap/', '../fonts/')) + .pipe($.replace('../../bower_components/font-awesome/fonts/', '../fonts/')) .pipe($.minifyCss({ processImport: false })) .pipe($.sourcemaps.write('maps')) .pipe(cssFilter.restore) -- libgit2 0.21.2