@riboseinc/anafero-cli 0.0.3 → 0.0.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/README.rst CHANGED
@@ -9,6 +9,11 @@ Requires Node 22.
9
9
 
10
10
  Currently it only supports Firelight GUI.
11
11
 
12
+ Development
13
+ -----------
14
+
15
+ To clean & build the package, run ``yarn cbp``.
16
+
12
17
  Notes on dependencies
13
18
  ---------------------
14
19
 
package/bootstrap.js CHANGED
@@ -132168,7 +132168,7 @@ var Search2 = function({ index, query, getPlainTitle, locateResource, onEditQuer
132168
132168
  const queryTokenized = import_lunr.default.tokenizer(debouncedQuery);
132169
132169
  try {
132170
132170
  return [
132171
- index?.search(queryTokenized.map((t2) => `+${t2}`).join(" "))?.map((res) => ({ ...res, id: res.ref, name: res.ref })),
132171
+ index?.search(queryTokenized.map((t2) => `${t2}`).join(" "))?.map((res) => ({ ...res, id: res.ref, name: res.ref })),
132172
132172
  null
132173
132173
  ];
132174
132174
  } catch (e2) {