diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-11-14 20:04:18 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-11-15 20:40:14 -0400 |
commit | 2d5f323bb4da3cdedc5814491f841e4154478f69 (patch) | |
tree | c755de2e4888ddf73b396a0506d8ff3ad8f2b017 /src/upd8.js | |
parent | 5a7500688040fc19940adf0e2d0d96a0f75d014b (diff) |
checks, yaml, etc: pass find to filterReferenceErrors
Diffstat (limited to 'src/upd8.js')
-rwxr-xr-x | src/upd8.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upd8.js b/src/upd8.js index 609a758d..49c3217f 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -43,7 +43,7 @@ import wrap from 'word-wrap'; import {mapAggregate, showAggregate} from '#aggregate'; import CacheableObject from '#cacheable-object'; import {displayCompositeCacheAnalysis} from '#composite'; -import {bindFind, getAllFindSpecs} from '#find'; +import find, {bindFind, getAllFindSpecs} from '#find'; import {processLanguageFile, watchLanguageFile, internalDefaultStringsFile} from '#language'; import {isMain, traverse} from '#node-utils'; @@ -1626,7 +1626,7 @@ async function main() { }); const filterReferenceErrorsAggregate = - filterReferenceErrors(wikiData, {bindFind}); + filterReferenceErrors(wikiData, {find, bindFind}); try { filterReferenceErrorsAggregate.close(); |