@builder.io/dev-tools 1.18.17-dev.202511261329.962ee17e9 → 1.18.17-dev.202511261532.38bc0fb2a
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 +32 -69
- 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/codegen.d.ts +1 -1
- package/types/cli/sync-utils.d.ts +0 -5
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -267,7 +267,7 @@ export declare class CodeGenSession {
|
|
|
267
267
|
* Returns a dispose function to unsubscribe.
|
|
268
268
|
* The watcher is lazily initialized on first subscription and cleaned up on last unsubscribe.
|
|
269
269
|
*/
|
|
270
|
-
subscribeToFileChanges(onEvent: (event: FolderWatchEvent) => void): () => void
|
|
270
|
+
subscribeToFileChanges(onEvent: (event: FolderWatchEvent) => void): () => Promise<void>;
|
|
271
271
|
close(uploadGitBackup?: boolean): Promise<void>;
|
|
272
272
|
emitGitStatus(): Promise<GenerateCompletionStepGit | null>;
|
|
273
273
|
manualCommit(options: {
|
|
@@ -17,11 +17,6 @@ export declare function getAllProjectFiles({ basePath, globPattern, extraIgnoreP
|
|
|
17
17
|
export declare function findBuilderFiles(basePath: string, targetContentId: string, targetSessionKey: string): Promise<FileNode[]>;
|
|
18
18
|
export declare function filterNonImportantFiles(files: string[]): string[];
|
|
19
19
|
export declare function getIgnorePatterns(basePath: string): (path: string) => boolean;
|
|
20
|
-
/**
|
|
21
|
-
* Get all ignore patterns as an array of strings for tools like ripgrep
|
|
22
|
-
* This includes base patterns and patterns from .gitignore/.builderignore files
|
|
23
|
-
*/
|
|
24
|
-
export declare function getIgnorePatternsArray(basePath: string): string[];
|
|
25
20
|
export declare function watchDirectory(basePath: string, syncInfo: SyncInfo, onChange: (updatedSyncInfo: SyncInfo) => void): () => Promise<void>;
|
|
26
21
|
export declare function setupSyncServer(sys: DevToolsSys, initialSyncInfo?: SyncInfo): Promise<void>;
|
|
27
22
|
export declare function syncCommand(opts: AddCliOptions): Promise<SyncInfo | undefined>;
|