Copy ChosenJS images to assets with Gulp

This commit is contained in:
Frederic Guillot 2016-05-15 12:55:04 -04:00
parent c15c4ba0f4
commit 70c1df14db
3 changed files with 5 additions and 1 deletions

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

View File

@ -97,7 +97,8 @@ var vendor = {
var dist = {
fonts: 'assets/fonts/',
css: 'assets/css/',
js: 'assets/js/'
js: 'assets/js/',
img: 'assets/img/'
};
gulp.task('bower', function() {
@ -120,6 +121,9 @@ gulp.task('vendor', function() {
gulp.src('bower_components/jquery-ui/themes/base/images/*')
.pipe(gulp.dest(dist.css + 'images/'));
gulp.src('bower_components/chosen/*.png')
.pipe(gulp.dest(dist.img + ''));
});
gulp.task('js', function() {