Skip to content

Commit

Permalink
#2836 add run sequence & formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Aug 13, 2015
1 parent b02bb07 commit 8814f05
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions tasks/build.js
Expand Up @@ -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');
Expand All @@ -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');
Expand Down

0 comments on commit 8814f05

Please sign in to comment.