@tenonhq/sincronia-core 0.0.53 → 0.0.54

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.
@@ -255,10 +255,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
255
255
  async startUpdateSetMonitoring() {
256
256
  // Check update sets immediately on start
257
257
  await this.checkAllUpdateSets();
258
- // Then check every 30 seconds
258
+ // Then check every 2 minutes
259
259
  this.updateSetCheckInterval = setInterval(async () => {
260
260
  await this.checkAllUpdateSets();
261
- }, 30000);
261
+ }, 120000); // 2 minutes = 120000ms
262
262
  }
263
263
  async checkAllUpdateSets() {
264
264
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tenonhq/sincronia-core",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "description": "Next-gen file syncer",
5
5
  "license": "GPL-3.0",
6
6
  "main": "./dist/index.js",