blob: c825df857a94c262902a94fa6767ff2c26908bf6 [file] [log] [blame]
Matteo Scandolodf35ca92016-02-25 09:19:41 -08001'use strict';
2
3var gulp = require('gulp');
4var wrench = require('wrench');
5
6var options = {
7 src: 'src/',
Matteo Scandolo63b63fa2016-02-25 09:38:59 -08008 css: 'src/css/',
Matteo Scandolo195dde92016-07-25 16:43:16 -07009 icon: 'src/icons',
Matteo Scandolo1778b742016-04-22 09:47:50 -070010 sass: 'src/sass/',
Matteo Scandolodf35ca92016-02-25 09:19:41 -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 Scandolodf35ca92016-02-25 09:19:41 -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});