summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-15 12:55:04 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-15 12:55:04 -0400
commit70c1df14db9f44c99844bcff411e357ea32fab26 (patch)
tree81f574f6dd28b47e937d548e646f4faa537eab83 /gulpfile.js
parentc15c4ba0f40926a3320ddf4567692f339b7e45ef (diff)
Copy ChosenJS images to assets with Gulp
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index b7087e35..2f96cb36 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -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() {