Within Gulp, I am using gulp.src
to select every font file from a directory:
gulp.task('copy-fonts', function() {
gulp.src('components/**/*.{ttf,woff,eof,svg}')
.pipe(gulp.dest('build/fonts'));
});
However, I would like to have all of these font files wind up in one directory side-by-side rather than have the entire tree re-created from the components
directory.
Looking in the Gulp, Gulp Utils, and npm-glob APIs didn't really help me, though I could've easily skipped by it.
What would the best way to go about this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…