ccsini 0.1.12 → 0.1.15

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -26950,7 +26950,7 @@ var {
26950
26950
  } = import__.default;
26951
26951
 
26952
26952
  // src/version.ts
26953
- var VERSION = "0.1.12";
26953
+ var VERSION = "0.1.15";
26954
26954
 
26955
26955
  // src/commands/init.ts
26956
26956
  init_source();
@@ -28044,10 +28044,14 @@ var NEVER_SYNC_PATTERNS = [
28044
28044
  "image-cache/**",
28045
28045
  "file-history/**",
28046
28046
  "**/node_modules/**",
28047
- "**/cache/**"
28047
+ "**/cache/**",
28048
+ "**/tool-results/**",
28049
+ "projects/**/*.jsonl",
28050
+ "plugins/**",
28051
+ "plans/**"
28048
28052
  ];
28049
28053
  var JWT_EXPIRY_SECONDS = 900;
28050
- var MAX_CONCURRENT_TRANSFERS = 10;
28054
+ var MAX_CONCURRENT_TRANSFERS = 50;
28051
28055
  // src/core/auth.ts
28052
28056
  async function generateDeviceKeypair() {
28053
28057
  const keypair = await crypto.subtle.generateKey("Ed25519", true, ["sign", "verify"]);
@@ -28622,7 +28626,7 @@ async function pullSync(client, masterKey, deviceName, configDir, onProgress) {
28622
28626
  const localManifest = await loadManifest(configDir);
28623
28627
  progress("Comparing manifests...");
28624
28628
  const diffs = diffManifests(localManifest, remoteManifest);
28625
- const toPull = diffs.filter((d) => d.action === "pull" || d.action === "merge");
28629
+ const toPull = diffs.filter((d) => (d.action === "pull" || d.action === "merge") && !isExcluded(d.path));
28626
28630
  progress(`${toPull.length} files to pull`);
28627
28631
  let downloaded = 0;
28628
28632
  const chunks = chunkArray(toPull, MAX_CONCURRENT_TRANSFERS);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccsini",
3
- "version": "0.1.12",
3
+ "version": "0.1.15",
4
4
  "description": "Claude Code seamless sync across devices",
5
5
  "type": "module",
6
6
  "bin": {