Skip to content

Commit abf8d97

Browse files
committed
Pretesting build
1 parent d16dfe6 commit abf8d97

File tree

4 files changed

+21
-45596
lines changed

4 files changed

+21
-45596
lines changed

gulpfile.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ gulp.task('build', function () {
3232
});
3333

3434
gulp.task('minify', function () {
35-
pump([
36-
gulp.src('./quickblox.min.js'),
37-
uglify(),
38-
notify('Minify task is finished.'),
39-
gulp.dest('./')
40-
]);
35+
return gulp.src(['./quickblox.min.js'])
36+
.pipe(uglify())
37+
.on('error', function (err) { console.log('ERROR', err) })
38+
.pipe(gulp.dest('./'));
4139
});
4240

4341
gulp.task('connect', function() {

0 commit comments

Comments
 (0)