My code works but I have a 5 second timeout. The proper way would be to wait for the sequence to end and then build the jar.
Any help??
gulp.task('build-utility', function(cb) {
runSequence('clean', ['scripts', 'vendor', 'html', 'i18n', 'css', 'webfonts', 'images'], cb);
setTimeout(function() {
gulp.start('jar');
}, 5000);
});