From 009543d68c9098dfd83d2b0cd6e855c3d07d4faf Mon Sep 17 00:00:00 2001 From: koenemann Date: Mon, 4 Jan 2016 14:35:52 +0100 Subject: [PATCH] adding woff2 font type support for gulp copy-assets task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a1e0e83..6dd8244 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,7 +50,7 @@ gulp.task('copy-assets', function() { .pipe(gulp.dest('./js')); gulp.src(basePaths.bower + 'bootstrap-sass/assets/stylesheets/**/*.scss') .pipe(gulp.dest('./sass/bootstrap-sass')); - gulp.src(basePaths.bower + 'bootstrap-sass/assets/fonts/bootstrap/*.{ttf,woff,eof,svg}') + gulp.src(basePaths.bower + 'bootstrap-sass/assets/fonts/bootstrap/*.{ttf,woff,woff2,eof,svg}') .pipe(gulp.dest('./fonts')); gulp.src(basePaths.bower + 'fontawesome/fonts/**/*.{ttf,woff,eof,svg}') .pipe(gulp.dest('./fonts'));