-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/compt 79 readme changeset publish v0.1.0 #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,15 @@ | ||||||
| --- | ||||||
| "@ciscode/scheduler-kit": minor | ||||||
| --- | ||||||
|
|
||||||
| Initial feature release v0.1.0. | ||||||
|
|
||||||
| - `SchedulerModule` with `register()` and `registerAsync()` for synchronous and factory-based configuration | ||||||
| - `SchedulerService` with dynamic `schedule()`, `unschedule()`, `reschedule()`, `list()`, `status()`, and `listStatus()` API | ||||||
| - `@Cron`, `@Interval`, and `@Timeout` method decorators for declarative job definitions | ||||||
| - Automatic concurrency guard — overlapping executions are silently skipped | ||||||
| - Per-job error isolation — handler errors are caught and reported; the scheduler continues running | ||||||
| - `CronExpression` enum of named cron constants | ||||||
| - `cron()` fluent builder with `at()`, `on()`, and `everyMinutes()` helpers | ||||||
|
||||||
| - `cron()` fluent builder with `at()`, `on()`, and `everyMinutes()` helpers | |
| - `cron` scheduling helpers with `every(n).minutes()/hours()`, `dailyAt()`, `weekdaysAt()`, `weekendsAt()`, `weeklyOn()`, and `monthlyOn()` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before publishing v0.1.0, ensure the runtime dependency on the
cronpackage is declared for consumers (it’s imported bySchedulerService, but currently appears only underdevDependencies). Otherwise installs of@ciscode/scheduler-kitmay fail at runtime withCannot find module 'cron'.