@digipair/skill-cron 0.50.1 → 0.50.2

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/index.cjs.js CHANGED
@@ -10240,6 +10240,7 @@ let CronService = class CronService {
10240
10240
  await this.startTask(path, plan.digipair, plan.reasoning);
10241
10241
  continue;
10242
10242
  }
10243
+ console.log('plan', plan);
10243
10244
  const job = new dist.CronJob(plan.time, async ()=>{
10244
10245
  await this.startTask(path, plan.digipair, plan.reasoning);
10245
10246
  }, null, !!plan.enabled, utcOffset);
package/index.esm.js CHANGED
@@ -10232,6 +10232,7 @@ let CronService = class CronService {
10232
10232
  await this.startTask(path, plan.digipair, plan.reasoning);
10233
10233
  continue;
10234
10234
  }
10235
+ console.log('plan', plan);
10235
10236
  const job = new dist.CronJob(plan.time, async ()=>{
10236
10237
  await this.startTask(path, plan.digipair, plan.reasoning);
10237
10238
  }, null, !!plan.enabled, utcOffset);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-cron",
3
- "version": "0.50.1",
3
+ "version": "0.50.2",
4
4
  "dependencies": {
5
5
  "cron": "^3.1.7"
6
6
  },
File without changes