Copy ChosenJS images to assets with Gulp
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 646 B After Width: | Height: | Size: 538 B |
Binary file not shown.
|
Before Width: | Height: | Size: 872 B After Width: | Height: | Size: 738 B |
@@ -97,7 +97,8 @@ var vendor = {
|
|||||||
var dist = {
|
var dist = {
|
||||||
fonts: 'assets/fonts/',
|
fonts: 'assets/fonts/',
|
||||||
css: 'assets/css/',
|
css: 'assets/css/',
|
||||||
js: 'assets/js/'
|
js: 'assets/js/',
|
||||||
|
img: 'assets/img/'
|
||||||
};
|
};
|
||||||
|
|
||||||
gulp.task('bower', function() {
|
gulp.task('bower', function() {
|
||||||
@@ -120,6 +121,9 @@ gulp.task('vendor', function() {
|
|||||||
|
|
||||||
gulp.src('bower_components/jquery-ui/themes/base/images/*')
|
gulp.src('bower_components/jquery-ui/themes/base/images/*')
|
||||||
.pipe(gulp.dest(dist.css + 'images/'));
|
.pipe(gulp.dest(dist.css + 'images/'));
|
||||||
|
|
||||||
|
gulp.src('bower_components/chosen/*.png')
|
||||||
|
.pipe(gulp.dest(dist.img + ''));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('js', function() {
|
gulp.task('js', function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user