@builder.io/dev-tools 1.14.3-dev.202510201050.6a1fd28ff → 1.14.3-dev.202510201420.6a1fd28ff

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.
@@ -132,7 +132,9 @@ export declare class CodeGenSession {
132
132
  includePattern?: string;
133
133
  gitignore?: boolean;
134
134
  }): Promise<string[]>;
135
- collectRepoMetrics(rootPath?: string): Promise<RepoMetrics>;
135
+ collectRepoMetrics(opts?: {
136
+ rootPath?: string;
137
+ }): Promise<RepoMetrics>;
136
138
  getSessionId(): string;
137
139
  getSpaceId(): string | undefined;
138
140
  revertToCommitHash(commitHash: string): Promise<void>;
@@ -6,4 +6,4 @@ import type { DevToolsSys } from "../types";
6
6
  * @param basePath - Absolute path to the repository root
7
7
  * @param rootPath - Relative path within the repository to analyze (default: "/" for entire repo)
8
8
  */
9
- export declare function collectRepoMetrics(sys: DevToolsSys, basePath: string, rootPath?: string): Promise<RepoMetrics>;
9
+ export declare function collectRepoMetrics(sys: DevToolsSys, basePath: string): Promise<RepoMetrics>;