1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
export const description = `Update data files in-place to satisfy custom sorting rules`;
export const config = {
fileSizes: {
applicable: false,
},
languageReloading: {
applicable: false,
},
mediaValidation: {
applicable: false,
},
search: {
applicable: false,
},
thumbs: {
applicable: false,
},
webRoutes: {
applicable: false,
},
};
export function getCLIOptions() {
return {};
}
export async function go({wikiData, dataPath}) {
for (const sortingRule of wikiData.sortingRules) {
await sortingRule.apply({wikiData, dataPath});
}
}
|