mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Bugfix: Gulp v5 broke copying fonts.
https://github.com/gulpjs/gulp/issues/2797
This commit is contained in:
parent
03a8e6a3ec
commit
cc9bc3d6da
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ const fontasticFontsClear = () => del('snappymail/v/' + config.devVersion + '/st
|
||||||
|
|
||||||
const fontasticFontsCopy = () =>
|
const fontasticFontsCopy = () =>
|
||||||
gulp
|
gulp
|
||||||
.src('vendors/fontastic/fonts/snappymail.*')
|
.src('vendors/fontastic/fonts/snappymail.*', { encoding: false })
|
||||||
.pipe(gulp.dest('snappymail/v/' + config.devVersion + '/static/css/fonts'));
|
.pipe(gulp.dest('snappymail/v/' + config.devVersion + '/static/css/fonts'));
|
||||||
|
|
||||||
const fontastic = gulp.series(fontasticFontsClear, fontasticFontsCopy);
|
const fontastic = gulp.series(fontasticFontsClear, fontasticFontsCopy);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue