blob: d893755cc052a6873667f354ed56c1384f749ea3 [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 Scandolof043aae2016-01-20 16:52:51 -08007 ngXosVendor: '../../xos/core/xoslib/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});