diff --git a/gulpfile.js b/gulpfile.js index 9698241..8324029 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -53,7 +53,8 @@ gulp.task('dist', gulp.series( buildJson, buildJsonTranslations, copyHtml, - copyImages + copyImages, + copyCustomData ), ) ); @@ -111,6 +112,11 @@ function copyImages() { .pipe(gulp.dest('Dist/Images')); } +function copyCustomData() { + return gulp.src('CustomData/**') + .pipe(gulp.dest('Dist/CustomData')); +} + function buildJson() { return gulp.src(jsonFiles) .pipe(jsonmin())