Skip to content

Commit

Permalink
Allow searching author and url
Browse files Browse the repository at this point in the history
  • Loading branch information
sebromero committed Nov 29, 2024
1 parent db1cbef commit 3ab1e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/package-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class PackageManager {
if(!pattern) return packageList; // Return all packages if no pattern is supplied

const fuse = new Fuse(packageList, {
keys: ['name', 'description', 'tags'],
keys: ['name', 'description', 'tags', 'author', 'url'],
minMatchCharLength: 3,
threshold: 0.5,
includeMatches: true
Expand Down

0 comments on commit 3ab1e69

Please sign in to comment.