From 21495c1dd17641aad6d1bac5f764b0fde47911a4 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 3 May 2020 11:14:14 +0200 Subject: [PATCH] Remove the `gulp bundle` task since it's unused and doesn't really make sense Not only is there no code depending on it now, the actual task itself doesn't even make sense as-is. Note that it uses the default `DEFINES` configuration *unaltered*, which is neither useful nor correct since the resulting build thus won't make sense without an actual built target set. --- gulpfile.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index eb6ac14b6..bb1f0bb16 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -677,13 +677,6 @@ gulp.task("cmaps", function (done) { done(); }); -gulp.task( - "bundle", - gulp.series("buildnumber", function () { - return createBundle(DEFINES).pipe(gulp.dest(BUILD_DIR)); - }) -); - function preprocessCSS(source, mode, defines, cleanup) { var outName = getTempFile("~preprocess", ".css"); builder.preprocessCSS(mode, source, outName);