Skip to content

Commit bdf29ec

Browse files
committed
Remove gulp makefile, since it's broken and unused
Looking at the history of the code, this `gulp` task was *accidentally* broken in the Gulp 4 upgrade in PR 10266 (all the way back in 2018). Given that no one has either noticed and/or complained about this since, it's safe to assume that it's completely unused, hence why I suggest that we just remove this `gulp` task (rather than fixing it).
1 parent 6c249f8 commit bdf29ec

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

gulpfile.js

-11
Original file line numberDiff line numberDiff line change
@@ -1848,17 +1848,6 @@ gulp.task("clean", function (done) {
18481848
rimraf(BUILD_DIR, done);
18491849
});
18501850

1851-
gulp.task("makefile", function () {
1852-
let makefileContent = "help:\n\tgulp\n\n";
1853-
const targetsNames = [];
1854-
for (const i in target) {
1855-
makefileContent += i + ":\n\tgulp " + i + "\n\n";
1856-
targetsNames.push(i);
1857-
}
1858-
makefileContent += ".PHONY: " + targetsNames.join(" ") + "\n";
1859-
return createStringSource("Makefile", makefileContent).pipe(gulp.dest("."));
1860-
});
1861-
18621851
gulp.task("importl10n", function (done) {
18631852
const locales = require("./external/importL10n/locales.js");
18641853

0 commit comments

Comments
 (0)