Browse Source

Fixed build gulp task

master
Igor Zhukov 9 years ago
parent
commit
1c7680156a
  1. 9
      gulpfile.js

9
gulpfile.js

@ -248,10 +248,11 @@ gulp.task('bump', ['update-version-manifests', 'update-version-config'], functio @@ -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
);
});

Loading…
Cancel
Save