@floomhq/floom 1.0.59 → 1.0.61
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/daemon.js +1 -1
- package/dist/push-watch.js +1 -1
- package/package.json +1 -1
package/dist/daemon.js
CHANGED
|
@@ -11,7 +11,7 @@ const SERVICE_NAME = "floom-sync.service";
|
|
|
11
11
|
const LAUNCHD_LABEL = "dev.floom.sync";
|
|
12
12
|
const LOG_PATH = join(CONFIG_DIR, "daemon.log");
|
|
13
13
|
const STATUS_PATH = join(CONFIG_DIR, "daemon-status.json");
|
|
14
|
-
const NATIVE_BASELINE_VERSION =
|
|
14
|
+
const NATIVE_BASELINE_VERSION = 3;
|
|
15
15
|
const MIN_INTERVAL_SECONDS = 30;
|
|
16
16
|
const MIN_TIMEOUT_SECONDS = 30;
|
|
17
17
|
function targetsFor(value) {
|
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;
|