@digipair/skill-cron 0.50.0 → 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
File without changes
|
File without changes
|