blob: 6aa0b9293930eee28091ad52cc8603b3856fe171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import {join} from 'path';
import {APP_SRC, APP_DEST} from '../config';
export = function buildFontsDev(gulp, plugins) {
return function () {
return gulp.src([
join(APP_SRC, '**/*.eot'),
join(APP_SRC, '**/*.ttf'),
join(APP_SRC, '**/*.woff'),
join(APP_SRC, '**/*.woff2'),
join(APP_SRC, '**/*.otf')
])
.pipe(gulp.dest(APP_DEST));
};
}
|