fix(core): update
This commit is contained in:
parent
969088ad04
commit
1c5a1c21da
17197
package-lock.json
generated
17197
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
18
package.json
18
package.json
@ -12,22 +12,22 @@
|
|||||||
"build": "(tsbuild --web && tsbundle npm)"
|
"build": "(tsbuild --web && tsbundle npm)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.25",
|
"@gitzone/tsbuild": "^2.1.28",
|
||||||
"@gitzone/tsbundle": "^1.0.78",
|
"@gitzone/tsbundle": "^1.0.88",
|
||||||
"@gitzone/tsrun": "^1.2.12",
|
"@gitzone/tsrun": "^1.2.18",
|
||||||
"@gitzone/tstest": "^1.0.52",
|
"@gitzone/tstest": "^1.0.60",
|
||||||
"@pushrocks/tapbundle": "^3.2.9",
|
"@pushrocks/tapbundle": "^3.2.14",
|
||||||
"@types/node": "^14.11.2",
|
"@types/node": "^14.11.2",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.18.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/lik": "^4.0.17",
|
"@pushrocks/lik": "^4.0.17",
|
||||||
"@pushrocks/smartdelay": "^2.0.10",
|
"@pushrocks/smartdelay": "^2.0.13",
|
||||||
"@pushrocks/smartpromise": "^3.0.2",
|
"@pushrocks/smartpromise": "^3.1.6",
|
||||||
"croner": "^1.1.23",
|
"croner": "^1.1.23",
|
||||||
"dayjs": "^1.9.1",
|
"dayjs": "^1.10.7",
|
||||||
"is-nan": "^1.3.0",
|
"is-nan": "^1.3.2",
|
||||||
"pretty-ms": "^7.0.1"
|
"pretty-ms": "^7.0.1"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -18,7 +18,7 @@ export class CronParser {
|
|||||||
}
|
}
|
||||||
if (cronPart.includes('/')) {
|
if (cronPart.includes('/')) {
|
||||||
const every = parseInt(cronPart.split('/')[1], 10);
|
const every = parseInt(cronPart.split('/')[1], 10);
|
||||||
const findEvenMatch = (recursionStartArg: number) => {
|
const findEvenMatch = (recursionStartArg: number): number => {
|
||||||
if (recursionStartArg % every === 0) {
|
if (recursionStartArg % every === 0) {
|
||||||
return recursionStartArg;
|
return recursionStartArg;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user