blob: c825df857a94c262902a94fa6767ff2c26908bf6 [file] [log] [blame]
Matteo Scandolod7552052016-03-11 13:47:27 -08001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
7 src: 'src/',
Matteo Scandoloa448f7d2016-03-11 13:53:12 -08008 css: 'src/css/',
Matteo Scandolo195dde92016-07-25 16:43:16 -07009 icon: 'src/icons',
Matteo Scandolo280dcd32016-05-16 09:59:38 -070010 sass: 'src/sass/',
Matteo Scandolod7552052016-03-11 13:47:27 -080011 scripts: 'src/js/',
12 tmp: 'src/.tmp',
13 dist: 'dist/',
14 api: '../../ngXosLib/api/',
Matteo Scandolo195dde92016-07-25 16:43:16 -070015 helpers: './src/vendor/ng-xos-lib/dist/',
Matteo Scandolod7552052016-03-11 13:47:27 -080016 static: '../../../xos/core/xoslib/static/', // this is the django static folder
17 dashboards: '../../../xos/core/xoslib/dashboards/' // this is the django html folder
18};
19
20wrench.readdirSyncRecursive('./gulp')
21.map(function(file) {
22 require('./gulp/' + file)(options);
23});
24
25gulp.task('default', function () {
26 gulp.start('build');
27});