Browse Source

Merge branch 'callback-from-build-task' of https://github.com/artemkaint/Semantic-UI into next

pull/2850/head
jlukic 9 years ago
parent
commit
b02bb07f2c
1 changed files with 8 additions and 5 deletions
  1. 13
      tasks/build.js

13
tasks/build.js

@ -7,6 +7,7 @@ var
// config // config
config = require('./config/user'), config = require('./config/user'),
runSequence = require('run-sequence'),
install = require('./config/project/install') install = require('./config/project/install')
; ;
@ -25,18 +26,20 @@ module.exports = function(callback) {
return; return;
} }
var tasks = [];
// check for right-to-left (RTL) language // check for right-to-left (RTL) language
if(config.rtl == 'both') { if(config.rtl == 'both') {
gulp.start('build-rtl');
tasks.push('build-rtl');
} }
if(config.rtl === true || config.rtl === 'Yes') { if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('build-rtl'); gulp.start('build-rtl');
return; return;
} }
gulp.start('build-javascript');
gulp.start('build-css');
gulp.start('build-assets');
tasks.push('build-javascript');
tasks.push('build-css');
tasks.push('build-assets');
runSequence(tasks, callback);
}; };
Loading…
Cancel
Save