diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-30 11:18:57 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-30 14:30:05 -0400 |
commit | 825f0b3130a7141baf9111b6e7a783004a66b5fb (patch) | |
tree | 89c82959c33e2cf2439e6e871760e19f45408fe8 /src | |
parent | ba887971ccfc8b0e76d6a06253c507b4597ca0dc (diff) |
find: configure directories w/ getMatchableDirectories
Diffstat (limited to 'src')
-rw-r--r-- | src/find.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/find.js b/src/find.js index b5ca70b2..db35e0d8 100644 --- a/src/find.js +++ b/src/find.js @@ -23,6 +23,11 @@ export function processAllAvailableMatches(data, { (Object.hasOwn(thing, 'name') ? [thing.name] : []), + + getMatchableDirectories = thing => + (Object.hasOwn(thing, 'directory') + ? [thing.directory] + : [null]), } = {}) { const byName = Object.create(null); const byDirectory = Object.create(null); @@ -31,7 +36,14 @@ export function processAllAvailableMatches(data, { for (const thing of data) { if (!include(thing)) continue; - byDirectory[thing.directory] = thing; + for (const directory of getMatchableDirectories(thing)) { + if (typeof directory !== 'string') { + logWarn`Unexpected ${typeAppearance(directory)} returned in directories for ${inspect(thing)}`; + continue; + } + + byDirectory[directory] = thing; + } for (const name of getMatchableNames(thing)) { if (typeof name !== 'string') { |