@floomhq/floom 1.0.34 → 1.0.35
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 +8 -1
- package/package.json +1 -1
package/dist/push-watch.js
CHANGED
|
@@ -155,7 +155,14 @@ export async function pushWatchOnce(opts) {
|
|
|
155
155
|
const hash = hashPackage(key, skillPackage.skillBody, skillPackage.packageFiles);
|
|
156
156
|
const pushed = pushManifest.files[pushKey];
|
|
157
157
|
if (pushed?.hash === hash) {
|
|
158
|
-
|
|
158
|
+
if (!isUnchangedSyncedPackage(root, skillPackage, syncManifest)) {
|
|
159
|
+
markPackageSynced(root, skillPackage, syncManifest, pushed.slug);
|
|
160
|
+
await writeSyncManifest(syncManifest);
|
|
161
|
+
adopted += 1;
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
skipped += 1;
|
|
165
|
+
}
|
|
159
166
|
continue;
|
|
160
167
|
}
|
|
161
168
|
if (!opts.yolo) {
|