Skip to content
Snippets Groups Projects
Commit c1b78f42 authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

updated gulpfile.js to include the default images for image alpha transparancy...

updated gulpfile.js to include the default images for image alpha transparancy and graph image defaults.
parent 0d211cc7
No related branches found
No related tags found
No related merge requests found
Pipeline #49665 passed
...@@ -61,6 +61,12 @@ function copyEditorIcons() { ...@@ -61,6 +61,12 @@ function copyEditorIcons() {
.pipe(gulp.dest(dir.build + "editor/images/")); .pipe(gulp.dest(dir.build + "editor/images/"));
} }
function copyDatasetDefaultImages() {
return gulp
.src(["dataset/images/**/*.png", "dataset/images/**/*.jpg"])
.pipe(gulp.dest(dir.build + "dataset/images/"));
}
function copyBackground() { function copyBackground() {
return gulp return gulp
.src("backgrounds/background_4.jpg") .src("backgrounds/background_4.jpg")
...@@ -73,6 +79,7 @@ exports.build = gulp.series( ...@@ -73,6 +79,7 @@ exports.build = gulp.series(
copyParcel, copyParcel,
copyDefaultSpace, copyDefaultSpace,
copyEditorIcons, copyEditorIcons,
copyDatasetDefaultImages,
copyBackground, copyBackground,
zipBuild zipBuild
); );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment