refactor(cli): remove slicing from search helper

Removed the top 5 slicing constraint from the search helper function within the CLI package. This change allows to return all components whose score exceeds zero, instead of restricting it to the top 5.
This commit is contained in:
p-sw 2024-06-08 02:04:08 +09:00
parent 86111a715f
commit 36f465f2cf

View File

@ -56,6 +56,5 @@ export async function getSuggestion(componentNames: string[], input: string): Pr
return componentJw
.filter(([_, score]) => score > 0)
.sort((a, b) => b[1] - a[1])
.slice(0, 5)
.map(([name]) => name)
}