@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.
- package/dist/push-watch.js +1 -1
- package/package.json +1 -1
package/dist/push-watch.js
CHANGED
|
@@ -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
|
|
167
|
+
return Boolean(entry) && !isExplicitlyPublished(entry);
|
|
168
168
|
}
|
|
169
169
|
function slugFromPushManifest(key, pushManifest) {
|
|
170
170
|
return pushManifest.files[key]?.slug ?? null;
|