builder.io 1.7.12 → 1.7.14
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 +45 -45
- 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 +3 -3
- package/server/index.mjs +3 -3
- package/types/cli/launch/InitStateMachine.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -23,7 +23,6 @@ export declare class InitStateMachine {
|
|
|
23
23
|
stdout: string | Buffer;
|
|
24
24
|
stderr: string | Buffer;
|
|
25
25
|
}>;
|
|
26
|
-
TEMPORARY_CLONING_FOLDER: string;
|
|
27
26
|
init(config: InitConfig, signal?: AbortSignal): Promise<boolean>;
|
|
28
27
|
addInitLog(type: "status" | "log" | "error" | "complete", message: string, options?: {
|
|
29
28
|
step?: InitStateStep;
|
|
@@ -38,6 +37,7 @@ export declare class InitStateMachine {
|
|
|
38
37
|
private isGitConfigured;
|
|
39
38
|
private getGitRemoteUrl;
|
|
40
39
|
private sanitizeGitRemoteUrl;
|
|
40
|
+
validateGitRepo(repoPath: string): Promise<void>;
|
|
41
41
|
/**
|
|
42
42
|
* If a backup is available, perform a backup recovery (and throw if it fails and cannot be recovered from).
|
|
43
43
|
* If no backup is available, do nothing.
|