builder.io 1.6.148 → 1.6.150
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 +307 -307
- package/cli/index.cjs.map +4 -4
- 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 +72 -72
- package/server/index.mjs +74 -74
- package/types/cli/codegen.d.ts +1 -1
- package/types/cli/launch/helpers.d.ts +0 -2
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -160,7 +160,7 @@ export declare class CodeGenSession {
|
|
|
160
160
|
* Get the AI branch name
|
|
161
161
|
*/
|
|
162
162
|
getAiBranch(): string | undefined;
|
|
163
|
-
|
|
163
|
+
git(args: string[], cwd?: string): Promise<string>;
|
|
164
164
|
/**
|
|
165
165
|
* Helper to run git commands
|
|
166
166
|
*/
|
|
@@ -9,6 +9,4 @@ export declare const getGitHubRemoteUrl: ({ repoFullName, githubToken, githubHos
|
|
|
9
9
|
githubToken: string | undefined;
|
|
10
10
|
githubHost: string;
|
|
11
11
|
}) => string;
|
|
12
|
-
export declare const getActiveBranchCommand: () => string;
|
|
13
|
-
export declare const getActiveBranch: (cwd?: string) => string;
|
|
14
12
|
export declare const getCommandWithShellArgs: (command: string, shell: string) => string[];
|