@floomhq/floom 1.0.59 → 1.0.60

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.
@@ -164,7 +164,7 @@ function isExplicitlyPublished(entry) {
164
164
  return entry?.source === "published" || entry?.source === "updated";
165
165
  }
166
166
  function isBaselineAdopted(entry) {
167
- return entry?.source === "adopted";
167
+ return Boolean(entry) && !isExplicitlyPublished(entry);
168
168
  }
169
169
  function slugFromPushManifest(key, pushManifest) {
170
170
  return pushManifest.files[key]?.slug ?? null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",