builder.io 1.1.13-15 → 1.1.13-17
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 +141 -141
- package/package.json +2 -2
- package/types/cli/sync-utils.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "builder.io",
|
|
3
|
-
"version": "1.1.13-
|
|
4
|
-
"description": "Add Builder.io code snippets to an application",
|
|
3
|
+
"version": "1.1.13-17",
|
|
4
|
+
"description": "Add and Sync Builder.io code snippets to an application",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"builder.io": "./cli/index.cjs"
|
|
@@ -6,6 +6,5 @@ export declare function extractSignatureInfo(content: string): {
|
|
|
6
6
|
};
|
|
7
7
|
export declare function findBuilderFiles(basePath: string, targetContentId: string, targetSessionKey: string): Promise<FileNode[]>;
|
|
8
8
|
export declare function watchDirectory(basePath: string, syncInfo: SyncInfo, onChange: (updatedSyncInfo: SyncInfo) => void): () => void;
|
|
9
|
-
export declare function watchDirectory2(basePath: string, syncInfo: SyncInfo, onChange: (updatedSyncInfo: SyncInfo) => void): () => void;
|
|
10
9
|
export declare function setupSyncServer(sys: DevToolsSys, initialSyncInfo?: SyncInfo): Promise<void>;
|
|
11
10
|
export declare function syncCommand(opts: AddCliOptions): Promise<SyncInfo | undefined>;
|