parent
3c88c28e2b
commit
e4ba00e6d6
@ -21,25 +21,15 @@ import langTasks from "./tasks/lang/index.ts";
|
|||||||
import mmcTasks from "./tasks/mmc/index.ts";
|
import mmcTasks from "./tasks/mmc/index.ts";
|
||||||
import * as modTasks from "./tasks/misc/downloadMods.ts";
|
import * as modTasks from "./tasks/misc/downloadMods.ts";
|
||||||
|
|
||||||
export const buildClient = gulp.series(
|
export const buildClient = gulp.series(sharedTasks.default, clientTasks);
|
||||||
sharedTasks.default,
|
|
||||||
clientTasks,
|
|
||||||
pruneCacheTask,
|
|
||||||
);
|
|
||||||
export const buildServer = gulp.series(
|
export const buildServer = gulp.series(
|
||||||
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndServer),
|
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndServer),
|
||||||
serverTasks,
|
serverTasks,
|
||||||
pruneCacheTask,
|
|
||||||
);
|
|
||||||
export const buildLang = gulp.series(
|
|
||||||
sharedTasks.default,
|
|
||||||
langTasks,
|
|
||||||
pruneCacheTask,
|
|
||||||
);
|
);
|
||||||
|
export const buildLang = gulp.series(sharedTasks.default, langTasks);
|
||||||
export const buildMMC = gulp.series(
|
export const buildMMC = gulp.series(
|
||||||
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndClient),
|
gulp.parallel(sharedTasks.default, modTasks.downloadSharedAndClient),
|
||||||
mmcTasks,
|
mmcTasks,
|
||||||
pruneCacheTask,
|
|
||||||
);
|
);
|
||||||
export const buildAll = gulp.series(
|
export const buildAll = gulp.series(
|
||||||
sharedTasks.default,
|
sharedTasks.default,
|
||||||
@ -48,7 +38,6 @@ export const buildAll = gulp.series(
|
|||||||
langTasks,
|
langTasks,
|
||||||
gulp.series(modTasks.downloadSharedAndServer, serverTasks),
|
gulp.series(modTasks.downloadSharedAndServer, serverTasks),
|
||||||
),
|
),
|
||||||
pruneCacheTask,
|
|
||||||
);
|
);
|
||||||
export const buildChangelog = sharedTasks.buildChangelog;
|
export const buildChangelog = sharedTasks.buildChangelog;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user