add lang to gulpfile

This commit is contained in:
Josh Ponelat
2015-06-16 11:51:12 +02:00
parent 372723b82d
commit c0c5847bd3
2 changed files with 7 additions and 1 deletions

View File

@@ -113,6 +113,12 @@ gulp.task('copy', ['less'], function() {
.pipe(gulp.dest('./dist/lib'))
.on('error', log);
// copy `lang` for translations
gulp
.src(['./lang/**/*.js'])
.pipe(gulp.dest('./dist/lang'))
.on('error', log);
// copy all files inside html folder
gulp
.src(['./src/main/html/**/*'])