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

@ -6,7 +6,13 @@ require('./less');
require('./handlebars');
require('./copy');
gulp.task('build', function () {
return runSequence('clean',
['webpack', 'less', 'handlebars', 'copyHtml', 'copyContent', 'copyJs']);
gulp.task('build', function() {
return runSequence('clean', [
'webpack',
'less',
'handlebars',
'copyHtml',
'copyContent',
'copyJs'
]);
});