@phren/cli 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils-fts.js +1 -1
- package/package.json +1 -1
package/dist/utils-fts.js
CHANGED
|
@@ -83,7 +83,7 @@ export function extractKeywordEntries(text) {
|
|
|
83
83
|
export function extractKeywords(text) {
|
|
84
84
|
return extractKeywordEntries(text).join(" ");
|
|
85
85
|
}
|
|
86
|
-
// Base synonym map for fuzzy search expansion — source of truth is
|
|
86
|
+
// Base synonym map for fuzzy search expansion — source of truth is src/synonyms.json
|
|
87
87
|
const BASE_SYNONYMS = _baseSynonymsJson;
|
|
88
88
|
const LEARNED_SYNONYMS_FILE = "learned-synonyms.json";
|
|
89
89
|
function normalizeSynonymTerm(term) {
|