summaryrefslogtreecommitdiff
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2015-05-28 20:37:32 +0200
committerBenoit Foucher <benoit@zeroc.com>2015-05-28 20:37:32 +0200
commitc761bf70e293a00a5ed80d983d837a0da93f3823 (patch)
treeb44c3fd8bdb0adb8eb1ae9634005c2ed162b1f56 /js/gulpfile.js
parentReworked special exception for Mumble (diff)
downloadice-c761bf70e293a00a5ed80d983d837a0da93f3823.tar.bz2
ice-c761bf70e293a00a5ed80d983d837a0da93f3823.tar.xz
ice-c761bf70e293a00a5ed80d983d837a0da93f3823.zip
Fixed dist target to also build th minified libs
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index 23f524d7d35..6c9adc1266b 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -374,7 +374,7 @@ gulp.task("dist:libs", ["bower"],
.pipe(gulp.dest("lib"));
});
-gulp.task("dist", useBinDist ? ["dist:libs"] : libs.map(libTask));
+gulp.task("dist", useBinDist ? ["dist:libs"] : libs.map(minLibTask));
gulp.task("dist:watch", libs.map(libWatchTask));
gulp.task("dist:clean", libs.map(libCleanTask));
gulp.task("watch", ["test:watch"].concat(useBinDist ? [] : ["dist:watch"]));