gulp.task( 'fonts', [ 'clean' ], function () {
    return gulp.src( [ 'src/bower_modules/fontawesome/fonts/*{ttf,woff,eot,svg,otf}' ] )
        .pipe( gulp.dest( './dist/fonts/' ) );
} );