Skip to content

Commit

Permalink
Update gulpfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
miziel committed May 4, 2017
1 parent e912aa3 commit 7bb8c54
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions gulpfile.js
Expand Up @@ -26,6 +26,18 @@ gulp.task('assets', function(){
.pipe(gulp.dest('build/assets'))
});

gulp.task('font', function(){
return gulp.src('app/vendor/font-awesome/fonts/*')
.pipe(connect.reload())
.pipe(gulp.dest('build/assets/fonts'));
});

gulp.task('fontcss', function(){
return gulp.src('app/vendor/font-awesome/css/*')
.pipe(connect.reload())
.pipe(gulp.dest('build/assets/css'));
});

gulp.task('connect', function() {
connect.server({
root: 'build',
Expand Down

0 comments on commit 7bb8c54

Please sign in to comment.