blob: da08f7e13832f5e598bf61f6e1c2227a8c33982f [file] [log] [blame]
'use strict';
var gulp = require('gulp');
var wrench = require('wrench');
var options = {
ngXosVendor: '../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');
});