build working, need to separate browsersync

This commit is contained in:
Brittany Chiang
2017-03-15 13:38:19 -04:00
parent 4c9f0e8914
commit 5f684c5f4b
6 changed files with 101 additions and 97 deletions

View File

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