Remove Prune Cache Task from Build Tasks (#1084)

[SKIP]
This commit is contained in:
Integer Limit 2024-10-18 15:59:04 +11:00 committed by GitHub
parent 3c88c28e2b
commit e4ba00e6d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,25 +21,15 @@ import langTasks from "./tasks/lang/index.ts";
import mmcTasks from "./tasks/mmc/index.ts";
import * as modTasks from "./tasks/misc/downloadMods.ts";
export const buildClient = gulp.series(
sharedTasks.default,
clientTasks,
pruneCacheTask,
);
export const buildClient = gulp.series(sharedTasks.default, clientTasks);
export const buildServer = gulp.series(
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndServer),
serverTasks,
pruneCacheTask,
);
export const buildLang = gulp.series(
sharedTasks.default,
langTasks,
pruneCacheTask,
);
export const buildLang = gulp.series(sharedTasks.default, langTasks);
export const buildMMC = gulp.series(
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndClient),
mmcTasks,
pruneCacheTask,
);
export const buildAll = gulp.series(
sharedTasks.default,
@ -48,7 +38,6 @@ export const buildAll = gulp.series(
langTasks,
gulp.series(modTasks.downloadSharedAndServer, serverTasks),
),
pruneCacheTask,
);
export const buildChangelog = sharedTasks.buildChangelog;