switched from grunt to gulp

This commit is contained in:
kayone 2014-08-28 14:40:18 -07:00
parent 5cfe2c0186
commit 4d23b2cac3
23 changed files with 861 additions and 561 deletions

9
gulp/clean.js Normal file
View file

@ -0,0 +1,9 @@
var gulp = require('gulp');
var clean = require('gulp-clean');
var paths = require('./paths');
gulp.task('clean', function () {
return gulp.src(paths.dest.root, {read: false})
.pipe(clean());
});