mirror of https://github.com/akveo/blur-admin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
475 B
16 lines
475 B
9 years ago
|
'use strict';
|
||
|
|
||
|
var path = require('path');
|
||
|
var gulp = require('gulp');
|
||
|
var conf = require('./conf');
|
||
|
|
||
|
gulp.task('copyVendorImages',function () {
|
||
|
return gulp.src([
|
||
|
path.join(conf.wiredep.directory, '**/ammap/dist/ammap/images/**/*'),
|
||
|
path.join(conf.wiredep.directory, '**/amcharts/dist/amcharts/images/**/*'),
|
||
|
path.join(conf.wiredep.directory, '**/ionrangeslider/img/**/*')
|
||
|
])
|
||
|
.pipe(gulp.dest(path.join(conf.paths.dist, '/assets/img/theme/vendor')));
|
||
|
});
|
||
|
|