@builder.io/dev-tools 1.28.5-dev.202602211347.1480aeaea → 1.28.5-dev.202602211437.1480aeaea
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 +122 -66
- 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/launch/InitStateMachine.d.ts +1 -1
- package/types/cli/utils/git.d.ts +2 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -28,7 +28,7 @@ export declare class InitStateMachine {
|
|
|
28
28
|
constructor(config: InitConfig);
|
|
29
29
|
checkout(branchName: string, ref: string, repoPath: string): Promise<boolean>;
|
|
30
30
|
execAsync(exec: string, args: string[], cwd?: string, retry?: number): Promise<string>;
|
|
31
|
-
git(args: string[], cwd: string, retry?: number, timeout?: number): Promise<string>;
|
|
31
|
+
git(args: string[], cwd: string, retry?: number, timeout?: number, skipLogging?: boolean): Promise<string>;
|
|
32
32
|
performBackup({ sys, credentials, fusionConfig, volumePath, repositories, isConnectedToProvider, forcedFullBackup, }: {
|
|
33
33
|
sys: DevToolsSys;
|
|
34
34
|
credentials: Credentials;
|
package/types/cli/utils/git.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface RunCommandOptions {
|
|
|
6
6
|
debug?: boolean;
|
|
7
7
|
sys: DevToolsSys;
|
|
8
8
|
timeout?: number;
|
|
9
|
+
skipLogging?: boolean;
|
|
9
10
|
stdin?: string;
|
|
10
11
|
retry?: number;
|
|
11
12
|
}
|
|
@@ -18,6 +19,7 @@ type FetchGitConfigsResult = {
|
|
|
18
19
|
gitDiagnostics?: GitDiagnostics;
|
|
19
20
|
};
|
|
20
21
|
export declare function runCommand(cmd: string, args: string[], opts: RunCommandOptions): Promise<string>;
|
|
22
|
+
export declare function getMonotonicId(): string;
|
|
21
23
|
export declare const isGitRepoCorrupted: (stdout: string, stderr: string) => boolean;
|
|
22
24
|
export declare function fetchGitConfigs(credentials: Credentials, projectId: string): Promise<FetchGitConfigsResult>;
|
|
23
25
|
export {};
|