Fixed path-event filter
All checks were successful
Build / Build NPM Project (push) Successful in 39s
Build / Tag Version (push) Successful in 8s
Build / Publish Documentation (push) Successful in 36s

This commit is contained in:
2024-12-27 22:20:27 -05:00
parent 3bda688b1e
commit cb117273a7
3 changed files with 6 additions and 26 deletions

View File

@ -142,7 +142,7 @@ export class PathEvent {
const parsedFind = makeArray(filter).map(pe => new PathEvent(pe));
return parsedTarget.filter(t => {
if(!t.fullPath && t.all) return true;
return !!parsedFind.find(f => t.fullPath.startsWith(f.fullPath)
return !!parsedFind.find(f => f.fullPath.startsWith(t.fullPath)
&& (f.all || t.all || t.methods.intersection(f.methods).length));
});
}