From 5c3878be25280c3e24ede09472e2c5e0cc8cd3d4 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Thu, 12 Mar 2026 21:04:00 +0000 Subject: [PATCH] Copy webpack.mjs to legacy in dist task --- gulpfile.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gulpfile.mjs b/gulpfile.mjs index 8e7ee7fc1..43611371d 100644 --- a/gulpfile.mjs +++ b/gulpfile.mjs @@ -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)),