blob: d893755cc052a6873667f354ed56c1384f749ea3 [file] [log] [blame]
'use strict';
var gulp = require('gulp');
var wrench = require('wrench');
var options = {
ngXosVendor: '../../xos/core/xoslib/static/js/vendor/', //save here the minfied vendor file, this is automatically loaded in the django page
xosHelperSource: './xosHelpers/src/'
};
wrench.readdirSyncRecursive('./gulp')
.map(function(file) {
require('./gulp/' + file)(options);
});
gulp.task('default', function () {
gulp.start('vendor');
});