blob: da08f7e13832f5e598bf61f6e1c2227a8c33982f [file] [log] [blame]
Matteo Scandolo3bb37fe2015-11-04 12:41:13 +01001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
Matteo Scandolob0238d32015-11-04 16:03:59 +01007 ngXosVendor: '../static/js/vendor/', //save here the minfied vendor file, this is automatically loaded in the django page
Matteo Scandolof0830892015-11-05 11:58:53 +01008 xosHelperSource: './xosHelpers/src/'
Matteo Scandolo3bb37fe2015-11-04 12:41:13 +01009};
10
11wrench.readdirSyncRecursive('./gulp')
12.map(function(file) {
13 require('./gulp/' + file)(options);
14});
15
16gulp.task('default', function () {
17 gulp.start('vendor');
18});