diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-03-07 20:06:07 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-03-07 20:16:52 -0400 |
commit | 2c6f15d33558ad450f26054c09652645c1a99b38 (patch) | |
tree | fc3c1f9cb07393824c97979f9b0aa2bac78ef1f0 | |
parent | 142ff084c99ef1ce6f94d843b81fdd7824f7290a (diff) |
upd8, write: sort: don't check sorting in advance
-rwxr-xr-x | src/upd8.js | 1 | ||||
-rw-r--r-- | src/write/build-modes/sort.js | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/upd8.js b/src/upd8.js index ebcb5da5..a9929154 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -990,6 +990,7 @@ async function main() { fallbackStep('checkWikiDataSourceFileSorting', { default: 'perform', + buildConfig: 'sort', cli: { flag: 'skip-sorting-validation', negate: true, diff --git a/src/write/build-modes/sort.js b/src/write/build-modes/sort.js index df531dfa..1a738ac8 100644 --- a/src/write/build-modes/sort.js +++ b/src/write/build-modes/sort.js @@ -28,6 +28,10 @@ export const config = { webRoutes: { applicable: false, }, + + sort: { + applicable: false, + }, }; export function getCLIOptions() { |