This commit is contained in:
Brittany Chiang
2017-03-14 23:50:30 -04:00
parent 7e16ccdb46
commit 6cf1122d8e
6 changed files with 82 additions and 11 deletions

11
build/fonts.js Normal file
View File

@@ -0,0 +1,11 @@
const fontsPath = 'fonts/**/*';
const destPath = '_site/fonts';
module.exports = gulp => {
gulp.task('fonts', () => {
return gulp.src( fontsPath )
.pipe(gulp.dest( destPath ));
});
}