fix(core): update
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import * as plugins from './smarttime.plugins';
|
||||
import * as plugins from './smarttime.plugins.js';
|
||||
|
||||
export class CronParser {
|
||||
public cronExpression: string;
|
||||
@@ -62,7 +62,7 @@ export class CronParser {
|
||||
if (targetHour < currentHour) {
|
||||
currentDay = (currentDay + 1) % 30;
|
||||
}
|
||||
|
||||
|
||||
const targetDay = currentDay;
|
||||
if (targetDay < currentDay) {
|
||||
currentMonth = (currentMonth + 1) % 11;
|
||||
@@ -70,7 +70,7 @@ export class CronParser {
|
||||
|
||||
const targetMonth = currentMonth;
|
||||
if (targetMonth < currentMonth) {
|
||||
currentYear = (currentYear + 1);
|
||||
currentYear = currentYear + 1;
|
||||
}
|
||||
const targetYear = currentYear;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user