mustflow 2.103.32 → 2.103.33
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.
|
@@ -391,7 +391,7 @@ export async function searchLocalIndex(projectRoot, query, options = {}) {
|
|
|
391
391
|
const results = [];
|
|
392
392
|
try {
|
|
393
393
|
const cacheLayers = readCacheLayerSets(projectRoot);
|
|
394
|
-
const stalePaths = getStalePaths(projectRoot, database);
|
|
394
|
+
const stalePaths = getStalePaths(projectRoot, database, { includeState: false });
|
|
395
395
|
capabilities = readStoredSearchCapabilities(database);
|
|
396
396
|
const indexedMatches = getIndexedSearchMatches(database, normalizedQuery);
|
|
397
397
|
const querySnippetNgrams = buildSearchNgrams([normalizedQuery]);
|
package/package.json
CHANGED