blob: 08df5540d4d3dd147fba49e15b952cf60de80561 [file] [log] [blame]
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -07001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
7 src: 'src/',
Jeremy Moweryee139912016-04-17 19:20:01 -07008 css: 'src/css/',
Matteo Scandoloe993b882016-05-17 17:30:14 -07009 sass: 'src/sass/',
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070010 scripts: 'src/js/',
11 tmp: 'src/.tmp',
12 dist: 'dist/',
13 api: '../../ngXosLib/api/',
Matteo Scandoloe993b882016-05-17 17:30:14 -070014 helpers: '../../../xos/core/xoslib/static/js/vendor/',
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070015 static: '../../../xos/core/xoslib/static/', // this is the django static folder
16 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});