Fixed build gulp task

This commit is contained in:
Igor Zhukov 2015-03-24 22:24:48 +03:00
parent 11fa1c5347
commit 1c7680156a

View File

@ -248,10 +248,11 @@ gulp.task('bump', ['update-version-manifests', 'update-version-config'], functio
}); });
gulp.task('build', function(callback) { gulp.task('build', function(callback) {
runSequence('less', 'usemin', runSequence(
['copy', 'copy-locales', 'copy-images'], function() { 'less',
gulp.start('disable-production'); 'usemin',
} ['copy', 'copy-locales', 'copy-images', 'disable-production'],
callback
); );
}); });