From 0140ba838743fb00db1001020f9d08a7281c73b5 Mon Sep 17 00:00:00 2001 From: Nahuel Rullo Date: Tue, 13 Sep 2016 00:20:59 -0300 Subject: [PATCH] Copy bootstrap-sass-official fonts when building --- templates/app/gulpfile.babel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/app/gulpfile.babel.js b/templates/app/gulpfile.babel.js index dc7db2ed3..b4833dfe4 100644 --- a/templates/app/gulpfile.babel.js +++ b/templates/app/gulpfile.babel.js @@ -560,12 +560,12 @@ function flatten() { }); } gulp.task('copy:fonts:dev', () => { - return gulp.src('node_modules/{bootstrap,font-awesome}/fonts/*') + return gulp.src('node_modules/{bootstrap,bootstrap-sass-official/vendor/assets,font-awesome}/fonts/*') .pipe(flatten()) .pipe(gulp.dest(`${clientPath}/assets/fonts`)); }); gulp.task('copy:fonts:dist', () => { - return gulp.src('node_modules/{bootstrap,font-awesome}/fonts/*') + return gulp.src('node_modules/{bootstrap,bootstrap-sass-official/vendor/assets,font-awesome}/fonts/*') .pipe(flatten()) .pipe(gulp.dest(`${paths.dist}/${clientPath}/assets/fonts`)); });