mirror of https://github.com/akveo/blur-admin
24 lines
522 B
JavaScript
24 lines
522 B
JavaScript
'use strict';
|
|
|
|
var gulp = require('gulp');
|
|
var wrench = require('wrench');
|
|
|
|
/**
|
|
* This will load all js or coffee files in the gulp directory
|
|
* in order to load all gulp tasks
|
|
*/
|
|
wrench.readdirSyncRecursive('./gulp').filter(function(file) {
|
|
return (/\.(js|coffee)$/i).test(file);
|
|
}).map(function(file) {
|
|
require('./gulp/' + file);
|
|
});
|
|
|
|
|
|
/**
|
|
* Default task clean temporaries directories and launch the
|
|
* main optimization build task
|
|
*/
|
|
gulp.task('default', ['clean'], function () {
|
|
gulp.start('build');
|
|
});
|