blob: 08df5540d4d3dd147fba49e15b952cf60de80561 [file] [log] [blame]
Matteo Scandolo68c2e722015-12-04 10:14:40 -08001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
7 src: 'src/',
Matteo Scandolo97532ef2016-05-17 17:12:03 -07008 css: 'src/css/',
9 sass: 'src/sass/',
Matteo Scandolo68c2e722015-12-04 10:14:40 -080010 scripts: 'src/js/',
11 tmp: 'src/.tmp',
12 dist: 'dist/',
13 api: '../../ngXosLib/api/',
Matteo Scandolo97532ef2016-05-17 17:12:03 -070014 helpers: '../../../xos/core/xoslib/static/js/vendor/',
Matteo Scandoloea2448d2016-01-20 07:42:13 -080015 static: '../../../xos/core/xoslib/static/', // this is the django static folder
16 dashboards: '../../../xos/core/xoslib/dashboards/' // this is the django html folder
Matteo Scandolo68c2e722015-12-04 10:14:40 -080017};
18
19wrench.readdirSyncRecursive('./gulp')
20.map(function(file) {
21 require('./gulp/' + file)(options);
22});
23
24gulp.task('default', function () {
25 gulp.start('build');
26});