blob: 08df5540d4d3dd147fba49e15b952cf60de80561 [file] [log] [blame]
Matteo Scandolo8a64fa42016-01-21 11:21:03 -08001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
7 src: 'src/',
Matteo Scandolo70ac2162016-02-24 15:40:22 -08008 css: 'src/css/',
Matteo Scandolo1df21732016-03-29 14:06:13 -07009 sass: 'src/sass/',
Matteo Scandolo8a64fa42016-01-21 11:21:03 -080010 scripts: 'src/js/',
11 tmp: 'src/.tmp',
12 dist: 'dist/',
13 api: '../../ngXosLib/api/',
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070014 helpers: '../../../xos/core/xoslib/static/js/vendor/',
15 static: '../../../xos/core/xoslib/static/', // this is the django static folder
Matteo Scandolo8a64fa42016-01-21 11:21:03 -080016 dashboards: '../../../xos/core/xoslib/dashboards/' // this is the django html folder
17};
18
19wrench.readdirSyncRecursive('./gulp')
20.map(function(file) {
21 require('./gulp/' + file)(options);
22});
23
24gulp.task('default', function () {
25 gulp.start('build');
26});