Added support for custom UI folder

This commit is contained in:
Keivan Beigi 2015-07-21 19:42:38 -07:00
commit 98acd0d886
17 changed files with 192 additions and 131 deletions

View file

@ -3,6 +3,6 @@ var del = require('del');
var paths = require('./paths');
gulp.task('clean', function (cb) {
del([paths.dest.root], cb);
gulp.task('clean', function(cb) {
del([paths.dest.root], cb);
});