diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-05-28 20:37:32 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-05-28 20:37:32 +0200 |
commit | c761bf70e293a00a5ed80d983d837a0da93f3823 (patch) | |
tree | b44c3fd8bdb0adb8eb1ae9634005c2ed162b1f56 /js/gulpfile.js | |
parent | Reworked special exception for Mumble (diff) | |
download | ice-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.js | 2 |
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"])); |