fix(core): update

This commit is contained in:
Philipp Kunz 2021-11-08 16:40:19 +01:00
parent 969088ad04
commit 1c5a1c21da
3 changed files with 9054 additions and 8211 deletions

17245
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,22 +12,22 @@
"build": "(tsbuild --web && tsbundle npm)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^1.0.78",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@gitzone/tsbuild": "^2.1.28",
"@gitzone/tsbundle": "^1.0.88",
"@gitzone/tsrun": "^1.2.18",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^14.11.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@pushrocks/lik": "^4.0.17",
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.0.2",
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartpromise": "^3.1.6",
"croner": "^1.1.23",
"dayjs": "^1.9.1",
"is-nan": "^1.3.0",
"dayjs": "^1.10.7",
"is-nan": "^1.3.2",
"pretty-ms": "^7.0.1"
},
"files": [

View File

@ -18,7 +18,7 @@ export class CronParser {
}
if (cronPart.includes('/')) {
const every = parseInt(cronPart.split('/')[1], 10);
const findEvenMatch = (recursionStartArg: number) => {
const findEvenMatch = (recursionStartArg: number): number => {
if (recursionStartArg % every === 0) {
return recursionStartArg;
} else {