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) {
runSequence('less', 'usemin',
['copy', 'copy-locales', 'copy-images'], function() {
gulp.start('disable-production');
}
runSequence(
'less',
'usemin',
['copy', 'copy-locales', 'copy-images', 'disable-production'],
callback
);
});