From 8814f051729d42771e784cf66e778d796e5a67af Mon Sep 17 00:00:00 2001 From: jlukic Date: Thu, 13 Aug 2015 11:33:55 -0400 Subject: [PATCH] #2836 add run sequence & formatting --- tasks/build.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/tasks/build.js b/tasks/build.js index cd7111895b..e7935645e4 100644 --- a/tasks/build.js +++ b/tasks/build.js @@ -3,20 +3,26 @@ *******************************/ var + // dependencies gulp = require('gulp-help')(require('gulp')), + runSequence = require('run-sequence'), // config config = require('./config/user'), - runSequence = require('run-sequence'), - install = require('./config/project/install') + install = require('./config/project/install'), + + // task sequence + tasks = [] ; -// add sub-tasks + +// sub-tasks if(config.rtl) { require('./collections/rtl')(gulp); } require('./collections/build')(gulp); + module.exports = function(callback) { console.info('Building Semantic'); @@ -26,17 +32,16 @@ module.exports = function(callback) { return; } - var tasks = []; - // check for right-to-left (RTL) language - if(config.rtl == 'both') { - tasks.push('build-rtl'); - } if(config.rtl === true || config.rtl === 'Yes') { gulp.start('build-rtl'); return; } + if(config.rtl == 'both') { + tasks.push('build-rtl'); + } + tasks.push('build-javascript'); tasks.push('build-css'); tasks.push('build-assets');