builder.io 1.6.67 → 1.6.69

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.
@@ -61,5 +61,5 @@ interface RipgrepResult {
61
61
  }
62
62
  export declare function runRipgrep(workingDirectory: string, pattern: string, includeGlob?: string, excludeGlob?: string): Promise<RipgrepResult>;
63
63
  export declare function newAbortError(): Error;
64
- export declare function killProcess(sys: DevToolsSys, proc: ChildProcessByStdio<null, Readable, Readable> | undefined, abortSignal?: AbortSignal, timeout?: number): Promise<void>;
64
+ export declare function killProcess(sys: DevToolsSys, proc: ChildProcessByStdio<null, Readable, Readable> | undefined, abortSignal?: AbortSignal, timeout?: number): Promise<boolean>;
65
65
  export {};
@@ -234,6 +234,7 @@ export declare class CodeGenSession {
234
234
  * @returns True if the delete was successful, false otherwise
235
235
  */
236
236
  deleteFile(filePath: string): Promise<boolean>;
237
+ getNetLinesChanged(): number;
237
238
  }
238
239
  export declare function transformStream(body: ReadableStream<Uint8Array> | null): AsyncGenerator<string, void, unknown>;
239
240
  export declare function getUserContext(sys: DevToolsSys): Promise<UserContext>;
@@ -49,4 +49,6 @@ export interface CLIArgs {
49
49
  workspace?: string;
50
50
  /** Output structured JSON data instead of human-readable logs */
51
51
  jsonOutput?: boolean;
52
+ /** Local mode */
53
+ local?: boolean;
52
54
  }
@@ -73,3 +73,4 @@ export declare const getGitHubRemoteUrl: ({ repoFullName, githubToken, }: {
73
73
  }) => string;
74
74
  export declare const getActiveBranchCommand: () => string;
75
75
  export declare const getActiveBranch: (cwd?: string) => string;
76
+ export declare const getCommandWithShellArgs: (command: string, shell: string) => string[];
@@ -50,6 +50,13 @@ export interface LaunchArgs extends CLIArgs {
50
50
  * @default false
51
51
  */
52
52
  jsonOutput?: boolean;
53
+ /**
54
+ * Enable local development mode with port availability checking.
55
+ * When enabled, automatically finds an available port if the default is in use.
56
+ *
57
+ * @default false
58
+ */
59
+ local?: boolean;
53
60
  }
54
61
  export interface FusionConfig {
55
62
  command: string;