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