summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-18 20:34:36 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-18 20:34:36 -0400
commit0830fe22b777e419e42cfb3349e61098be9e4127 (patch)
tree83ed2f651d30478357f7c07e8e3a8310891cbadd /gulpfile.js
parent0378b5fcf9538eb3d4eac6356015f11da894880e (diff)
Minor Gantt chart improvements
* Task do not open anymore in a new window on the Gantt chart * Do not display task progress for tasks with no start/end date
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 97c61fbe..34ec1ba3 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -129,6 +129,7 @@ gulp.task('vendor', function() {
gulp.task('js', function() {
gulp.src(src.js)
.pipe(concat('app.min.js'))
+ .pipe(uglify())
.pipe(gulp.dest(dist.js))
;
});