@builder.io/dev-tools 1.18.38-dev.202512080849.e85b4e9fa → 1.18.38-dev.202512080950.2bf4fdc15
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/cli/index.cjs +74 -29
- package/cli/index.cjs.map +3 -3
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/codegen.d.ts +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -169,9 +169,9 @@ export declare class CodeGenSession {
|
|
|
169
169
|
searchFiles(options: SearchFilesOptions): Promise<SearchFilesResult>;
|
|
170
170
|
/**
|
|
171
171
|
* Search for files by their names/paths (for quick open functionality).
|
|
172
|
-
* Uses ripgrep's --files flag
|
|
173
|
-
* Always case insensitive
|
|
174
|
-
*
|
|
172
|
+
* Uses ripgrep's --files flag for speed (like VS Code's Cmd+T quick open).
|
|
173
|
+
* Always case insensitive. Returns match indices for highlighting in the UI.
|
|
174
|
+
* Respects access control policies (deny patterns).
|
|
175
175
|
*/
|
|
176
176
|
searchFileTree(options: SearchFileTreeOptions): Promise<SearchFileTreeResult>;
|
|
177
177
|
collectRepoMetrics(opts?: {
|