使用gulp从bower_components复制字体

时间:2017-04-05 08:36:08

标签: gulp

当我尝试从bootstrap&我font-awesome文件夹中的bower_components我得到如下文件夹结构。但是我希望在dist/fonts文件夹中包含所有字体。我做错了什么?

Gulp任务:

gulp.task('copy:bower-fonts', function() {
  gulp.src(yeoman.app + '/bower_components/**/fonts/*.*')
    .pipe(gulp.dest(yeoman.dist + '/fonts'));
});

当前观点:

enter image description here

1 个答案:

答案 0 :(得分:0)

解决了这个问题,使用了gulp-copy。请注意以下代码:

gulp.task('copy:bower-fonts', function() {
  gulp.src(yeoman.app + '/bower_components/**/fonts/*.*')
    .pipe(copy(yeoman.dist, { prefix: 3 }))
});

P.S。别忘了注入任务:var copy = require('gulp-copy');