@kevisual/project-search 0.0.7 → 0.0.8
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/app.js +2 -2
- package/dist/remote.js +2 -2
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -25142,11 +25142,11 @@ class ProjectSearch {
|
|
|
25142
25142
|
async searchFiles(query = "", options) {
|
|
25143
25143
|
const filter = [];
|
|
25144
25144
|
if (options?.projectPath)
|
|
25145
|
-
filter.push(`projectPath
|
|
25145
|
+
filter.push(`projectPath STARTS WITH "${options.projectPath}"`);
|
|
25146
25146
|
if (options?.repo)
|
|
25147
25147
|
filter.push(`repo = "${options.repo}"`);
|
|
25148
25148
|
if (options?.filepath)
|
|
25149
|
-
filter.push(`filepath
|
|
25149
|
+
filter.push(`filepath STARTS WITH "${options.filepath}"`);
|
|
25150
25150
|
if (options?.link)
|
|
25151
25151
|
filter.push(`link = "${options.link}"`);
|
|
25152
25152
|
const searchTerms = [];
|
package/dist/remote.js
CHANGED
|
@@ -25142,11 +25142,11 @@ class ProjectSearch {
|
|
|
25142
25142
|
async searchFiles(query = "", options) {
|
|
25143
25143
|
const filter = [];
|
|
25144
25144
|
if (options?.projectPath)
|
|
25145
|
-
filter.push(`projectPath
|
|
25145
|
+
filter.push(`projectPath STARTS WITH "${options.projectPath}"`);
|
|
25146
25146
|
if (options?.repo)
|
|
25147
25147
|
filter.push(`repo = "${options.repo}"`);
|
|
25148
25148
|
if (options?.filepath)
|
|
25149
|
-
filter.push(`filepath
|
|
25149
|
+
filter.push(`filepath STARTS WITH "${options.filepath}"`);
|
|
25150
25150
|
if (options?.link)
|
|
25151
25151
|
filter.push(`link = "${options.link}"`);
|
|
25152
25152
|
const searchTerms = [];
|