@claude-sync/cli 0.1.13 → 0.1.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/dist/bin/claude-sync.js
CHANGED
|
@@ -5462,9 +5462,10 @@ async function crossMachinePull(client, deviceId, projectPath, fromDeviceId, pro
|
|
|
5462
5462
|
dlSpinner.stop();
|
|
5463
5463
|
}
|
|
5464
5464
|
try {
|
|
5465
|
+
const completeManifest = await walkDirectory(targetDir);
|
|
5465
5466
|
await client.post("/api/sync/pull/complete", {
|
|
5466
5467
|
syncEventId: prepareResponse.syncEventId,
|
|
5467
|
-
manifest:
|
|
5468
|
+
manifest: completeManifest
|
|
5468
5469
|
});
|
|
5469
5470
|
} catch {
|
|
5470
5471
|
}
|
|
@@ -5584,9 +5585,10 @@ async function pullPhase(client, deviceId, projectPath, projectDir, projectId, o
|
|
|
5584
5585
|
dlSpinner.stop();
|
|
5585
5586
|
}
|
|
5586
5587
|
try {
|
|
5588
|
+
const completeManifest = await walkDirectory(projectDir);
|
|
5587
5589
|
await client.post("/api/sync/pull/complete", {
|
|
5588
5590
|
syncEventId: prepareResponse.syncEventId,
|
|
5589
|
-
manifest:
|
|
5591
|
+
manifest: completeManifest
|
|
5590
5592
|
});
|
|
5591
5593
|
} catch {
|
|
5592
5594
|
}
|