@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.
- package/cli/index.cjs +52 -18
- package/cli/index.cjs.map +2 -2
- 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 -1
- package/types/cli/repo-metrics.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -132,7 +132,9 @@ export declare class CodeGenSession {
|
|
|
132
132
|
includePattern?: string;
|
|
133
133
|
gitignore?: boolean;
|
|
134
134
|
}): Promise<string[]>;
|
|
135
|
-
collectRepoMetrics(
|
|
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
|
|
9
|
+
export declare function collectRepoMetrics(sys: DevToolsSys, basePath: string): Promise<RepoMetrics>;
|