fix(dependencies): Updated dependencies in package.json and resolved cron function issues.
This commit is contained in:
parent
35e387da7c
commit
491176bb35
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-12-13 - 4.0.9 - fix(dependencies)
|
||||||
|
Updated dependencies in package.json and resolved cron function issues.
|
||||||
|
|
||||||
|
- Updated multiple dependencies in package.json to their latest versions.
|
||||||
|
- Fixed issue in cron job instantiation by correcting the import and initialization of the croner.Cron class.
|
||||||
|
|
||||||
## 2024-06-23 - 4.0.8 - fix(documentation)
|
## 2024-06-23 - 4.0.8 - fix(documentation)
|
||||||
Corrected formatting issues in changelog.md
|
Corrected formatting issues in changelog.md
|
||||||
|
|
||||||
|
21
package.json
21
package.json
@ -13,21 +13,22 @@
|
|||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.80",
|
"@git.zone/tsbuild": "^2.2.0",
|
||||||
"@git.zone/tsbundle": "^2.0.15",
|
"@git.zone/tsbundle": "^2.1.0",
|
||||||
"@git.zone/tsrun": "^1.2.44",
|
"@git.zone/tsrun": "^1.3.3",
|
||||||
"@git.zone/tstest": "^1.0.90",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@push.rocks/tapbundle": "^5.0.23",
|
"@push.rocks/tapbundle": "^5.5.3",
|
||||||
"@types/node": "^20.14.8"
|
"@types/node": "^22.10.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/lik": "^6.0.15",
|
"@push.rocks/lik": "^6.1.0",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@push.rocks/smartpromise": "^4.0.3",
|
"@push.rocks/smartpromise": "^4.0.4",
|
||||||
"croner": "^7.0.3",
|
"croner": "^9.0.0",
|
||||||
"dayjs": "^1.11.11",
|
"date-fns": "^4.1.0",
|
||||||
|
"dayjs": "^1.11.13",
|
||||||
"is-nan": "^1.3.2",
|
"is-nan": "^1.3.2",
|
||||||
"pretty-ms": "^8.0.0"
|
"pretty-ms": "^9.2.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
4734
pnpm-lock.yaml
generated
4734
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smarttime',
|
name: '@push.rocks/smarttime',
|
||||||
version: '4.0.8',
|
version: '4.0.9',
|
||||||
description: 'Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.'
|
description: 'Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.'
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ export type TJobFunction =
|
|||||||
| ((triggerTimeArg?: number) => Promise<any>);
|
| ((triggerTimeArg?: number) => Promise<any>);
|
||||||
|
|
||||||
export class CronJob {
|
export class CronJob {
|
||||||
public cronParser: plugins.croner;
|
public cronParser: plugins.croner.Cron;
|
||||||
public status: 'started' | 'stopped' | 'initial' = 'initial';
|
public status: 'started' | 'stopped' | 'initial' = 'initial';
|
||||||
public cronExpression: string;
|
public cronExpression: string;
|
||||||
public jobFunction: TJobFunction;
|
public jobFunction: TJobFunction;
|
||||||
@ -17,7 +17,7 @@ export class CronJob {
|
|||||||
constructor(cronManager: CronManager, cronExpressionArg: string, jobFunction: TJobFunction) {
|
constructor(cronManager: CronManager, cronExpressionArg: string, jobFunction: TJobFunction) {
|
||||||
this.cronExpression = cronExpressionArg;
|
this.cronExpression = cronExpressionArg;
|
||||||
this.jobFunction = jobFunction;
|
this.jobFunction = jobFunction;
|
||||||
this.cronParser = plugins.croner(cronExpressionArg);
|
this.cronParser = new plugins.croner.Cron(cronExpressionArg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,11 +6,12 @@ import * as smartpromise from '@push.rocks/smartpromise';
|
|||||||
export { lik, smartdelay, smartpromise };
|
export { lik, smartdelay, smartpromise };
|
||||||
|
|
||||||
// third parties;
|
// third parties;
|
||||||
import croner from 'croner';
|
import * as croner from 'croner';
|
||||||
|
import * as dateFns from 'date-fns';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import isToday from 'dayjs/plugin/isToday.js';
|
import isToday from 'dayjs/plugin/isToday.js';
|
||||||
import prettyMs from 'pretty-ms';
|
import prettyMs from 'pretty-ms';
|
||||||
|
|
||||||
dayjs.extend(isToday);
|
dayjs.extend(isToday);
|
||||||
|
|
||||||
export { croner, dayjs, prettyMs };
|
export { croner, dateFns, dayjs, prettyMs };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user