blob: de911e9d816252002b6a83040118aa26d4a5bb38 [file] [log] [blame]
'use strict';
var gulp = require('gulp');
var wrench = require('wrench');
var options = {
src: 'src/',
css: 'src/css/',
scripts: 'src/js/',
tmp: 'src/.tmp',
dist: 'dist/',
api: '../../ngXosLib/api/',
helpers: '../../ngXosLib/xosHelpers/src/',
static: '../../static/', // this is the django static folder
dashboards: '../../dashboards/' // this is the django html folder
};
wrench.readdirSyncRecursive('./gulp')
.map(function(file) {
require('./gulp/' + file)(options);
});
gulp.task('default', function () {
gulp.start('build');
});