UNPKG

@pegakit/pegakit

Version:

The living styleguide, pattern library, UI ToolKit, and front-end build tools that power Pega's digital web properties.

18 lines (9 loc) 277 B
'use strict'; module.exports = function (gulp, config, $) { gulp.task('copy:fonts', 'Copies over fonts from the source to public folder.', function(done){ return gulp.src([ './source/fonts/**/*' ]) .pipe(gulp.dest('./public/fonts')); }); };