@floomhq/floom 1.0.49 → 1.0.50

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/sync.js +2 -2
  2. package/package.json +1 -1
package/dist/sync.js CHANGED
@@ -343,7 +343,7 @@ export async function sync(opts = {}) {
343
343
  if (plan.kind === "unchanged") {
344
344
  for (const file of packageFiles)
345
345
  markSynced(manifest, manifestKey(root, file.target), skill.slug, file.hash);
346
- await writeSyncManifest(manifest);
346
+ manifestChanged = true;
347
347
  unchanged += 1;
348
348
  continue;
349
349
  }
@@ -365,7 +365,7 @@ export async function sync(opts = {}) {
365
365
  }
366
366
  for (const file of packageFiles)
367
367
  markSynced(manifest, manifestKey(root, file.target), skill.slug, file.hash);
368
- await writeSyncManifest(manifest);
368
+ manifestChanged = true;
369
369
  updated += 1;
370
370
  }
371
371
  if (payload.full_sync === true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",