mirror of https://github.com/akveo/blur-admin
parent
dda370e61b
commit
f53c360d30
|
@ -78,7 +78,8 @@
|
||||||
"bootstrap": {
|
"bootstrap": {
|
||||||
"main": [
|
"main": [
|
||||||
"dist/css/bootstrap.css",
|
"dist/css/bootstrap.css",
|
||||||
"js/dropdown.js"
|
"js/dropdown.js",
|
||||||
|
"./dist/fonts/**.*"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"slimScroll": {
|
"slimScroll": {
|
||||||
|
|
|
@ -72,8 +72,7 @@ gulp.task('html', ['inject', 'partials'], function () {
|
||||||
// Only applies for fonts from bower dependencies
|
// Only applies for fonts from bower dependencies
|
||||||
// Custom fonts are handled by the "other" task
|
// Custom fonts are handled by the "other" task
|
||||||
gulp.task('fonts', function () {
|
gulp.task('fonts', function () {
|
||||||
return gulp.src($.mainBowerFiles())
|
return gulp.src($.mainBowerFiles('**/*.{eot,svg,ttf,woff,woff2}'))
|
||||||
.pipe($.filter('**/*.{eot,svg,ttf,woff,woff2}'))
|
|
||||||
.pipe($.flatten())
|
.pipe($.flatten())
|
||||||
.pipe(gulp.dest(path.join(conf.paths.dist, '/fonts/')));
|
.pipe(gulp.dest(path.join(conf.paths.dist, '/fonts/')));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue