@builder.io/dev-tools 1.19.13-dev.202601081900.a78f70f0c → 1.19.13-dev.202601082117.acf783c77
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 +18 -16
- 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/launch/InitStateMachine.d.ts +6 -1
- package/types/cli/utils/rules-discovery.d.ts +2 -2
- 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
|
|
31
|
+
git(args: string[], cwd: string, retry?: number, timeout?: number): Promise<string>;
|
|
32
32
|
performBackup({ sys, credentials, fusionConfig, volumePath, repositories, isConnectedToProvider, forcedFullBackup, }: {
|
|
33
33
|
sys: DevToolsSys;
|
|
34
34
|
credentials: Credentials;
|
|
@@ -67,6 +67,11 @@ export declare class InitStateMachine {
|
|
|
67
67
|
private checkHostConnectivity;
|
|
68
68
|
private checkConnectivityDirect;
|
|
69
69
|
private checkConnectivityViaProxy;
|
|
70
|
+
/**
|
|
71
|
+
* Ensures the parent directory of the given path exists.
|
|
72
|
+
* Handles nested repo.path like "subdir/myproject".
|
|
73
|
+
*/
|
|
74
|
+
private ensureParentDirExists;
|
|
70
75
|
private cleanupLockFiles;
|
|
71
76
|
validateGitRepo(repoPath: string): Promise<void>;
|
|
72
77
|
/**
|
|
@@ -7,8 +7,8 @@ import type { CustomInstruction } from "$/ai-utils";
|
|
|
7
7
|
/**
|
|
8
8
|
* Get custom instructions from the filesystem
|
|
9
9
|
* Searches for instruction files in:
|
|
10
|
-
* - .cursor/rules/ - Rule files (.mdc
|
|
11
|
-
* - .builder/rules/ - Rule files (.
|
|
10
|
+
* - .cursor/rules/ - Rule files (.mdc, .md, etc.)
|
|
11
|
+
* - .builder/rules/ - Rule files (.mdc, .md, etc.)
|
|
12
12
|
* - .claude/skills/ - SKILL.md files only (subdirectories supported)
|
|
13
13
|
* - .builder/skills/ - SKILL.md files only (subdirectories supported)
|
|
14
14
|
* - .cursorrules, .builderrules, .windsurfrules
|