-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [3.0.0-beta.6](v3.0.0-beta.5...v3.0.0-beta.6) (2023-09-26) ### ⚠ Breaking changes * removed `cron.job()` method in favor of `new CronJob(...args)` / `CronJob.from(argsObject)` * removed `cron.time()` method in favor of `new CronTime()` * `CronJob`: constructor no longer accepts an object as its first and only params. Use `CronJob.from(argsObject)` instead. * `CronJob`: callbacks are now called in the order they were registered ### 📦 Code Refactoring * migrate to TypeScript ([#694](#694)) ([97a65e1](97a65e1))
- Loading branch information
1 parent
97a65e1
commit e030f8b
Showing
3 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "cron", | ||
"description": "Cron jobs for your node", | ||
"version": "3.0.0-beta.5", | ||
"version": "3.0.0-beta.6", | ||
"author": "Nick Campbell <[email protected]> (https://github.com/ncb000gt)", | ||
"bugs": { | ||
"url": "https://github.com/kelektiv/node-cron/issues" | ||
|