Merge pull request #20857 from mschoettle/build-add-legacy

Copy webpack.mjs to legacy in dist task
This commit is contained in:
Tim van der Meij 2026-03-24 21:21:44 +01:00 committed by GitHub
commit b792f229d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2544,6 +2544,11 @@ gulp.task(
removeBOM: false,
})
.pipe(gulp.dest(DIST_DIR)),
gulp
.src("external/dist/webpack.mjs", {
encoding: false,
})
.pipe(gulp.dest(DIST_DIR + "legacy/")),
gulp
.src(GENERIC_DIR + "LICENSE", { encoding: false })
.pipe(gulp.dest(DIST_DIR)),