mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 15:07:02 +03:00
Small improvements
This commit is contained in:
parent
5123841540
commit
c99a46a118
29 changed files with 459 additions and 26 deletions
11
gulpfile.js
11
gulpfile.js
|
|
@ -494,12 +494,21 @@ gulp.task('fontastic-fonts:clear', function() {
|
|||
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/css/fonts/rainloop.*');
|
||||
});
|
||||
|
||||
gulp.task('fontastic-svg:clear', function() {
|
||||
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/css/svg/*.svg');
|
||||
});
|
||||
|
||||
gulp.task('fontastic-fonts:copy', ['fontastic-fonts:clear'], function() {
|
||||
return gulp.src('vendors/fontastic/fonts/rainloop.*')
|
||||
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/css/fonts'));
|
||||
});
|
||||
|
||||
gulp.task('fontastic', ['fontastic-fonts:copy']);
|
||||
gulp.task('fontastic-svg:copy', ['fontastic-svg:clear'], function() {
|
||||
return gulp.src('vendors/fontastic/svg/*.svg')
|
||||
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/css/svg'));
|
||||
});
|
||||
|
||||
gulp.task('fontastic', ['fontastic-fonts:copy', 'fontastic-svg:copy']);
|
||||
|
||||
gulp.task('ckeditor:clear', function() {
|
||||
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/ckeditor');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue