当我尝试从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'));
});
当前观点:
答案 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');