croner 7.0.4-dev.0 → 7.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,9 +13,9 @@ Trigger functions or evaluate cron expressions in JavaScript or TypeScript. No d
13
13
  * Uses Vixie-cron [pattern](#pattern), with additional features such as `L` for last day and weekday of month and `#` for nth weekday of month.
14
14
  * Works in Node.js >=7.6 (both require and import), Deno >=1.16 and Bun >=0.2.2.
15
15
  * Works in browsers as standalone, UMD or ES-module.
16
- * Target different [time zones](https://croner.56k.guru/usage/examples.html#time-zone).
17
- * Built-in [overrun protection](https://croner.56k.guru/usage/examples.html#overrun-protection)
18
- * Built-in [error handling](https://croner.56k.guru/usage/examples.html#error-handling)
16
+ * Target different [time zones](https://croner.56k.guru/usage/examples/#time-zone).
17
+ * Built-in [overrun protection](https://croner.56k.guru/usage/examples/#overrun-protection)
18
+ * Built-in [error handling](https://croner.56k.guru/usage/examples/#error-handling)
19
19
  * Includes [TypeScript](https://www.typescriptlang.org/) typings.
20
20
  * Support for asynchronous functions.
21
21
  * Pause, resume, or stop execution after a task is scheduled.
@@ -44,14 +44,14 @@ Cron('2024-01-23T00:00:00', { timezone: 'Asia/Kolkata' }, () => { console.log('Y
44
44
 
45
45
  ```
46
46
 
47
- More [examples](https://croner.56k.guru/usage/examples.html)...
47
+ More [examples](https://croner.56k.guru/usage/examples/)...
48
48
 
49
49
  ## Installation
50
50
 
51
51
  Full documentation on installation and usage is found at <https://croner.56k.guru>
52
52
 
53
53
  > **Note**
54
- > If you are migrating from a different library such as `cron` or `node-cron`, or upgrading from a older version of croner, see the [migration section](https://croner.56k.guru/migration.html) of the manual.
54
+ > If you are migrating from a different library such as `cron` or `node-cron`, or upgrading from a older version of croner, see the [migration section](https://croner.56k.guru/migration/) of the manual.
55
55
 
56
56
  Install croner using your favorite package manager or CDN. then include it in you project:
57
57
 
@@ -294,7 +294,7 @@ A list of fixes and features currently released in the `dev` branch is available
294
294
 
295
295
  Croner is founded and actively maintained by Hexagon. If you find value in Croner and want to contribute:
296
296
 
297
- - Code Contributions: See our [Contribution Guide](https://croner.56k.guru/contributing.html) for details on how to contribute code.
297
+ - Code Contributions: See our [Contribution Guide](https://croner.56k.guru/contributing/) for details on how to contribute code.
298
298
 
299
299
  - Sponsorship and Donations: See [github.com/sponsors/hexagon](https://github.com/sponsors/hexagon)
300
300
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "croner",
3
- "version": "7.0.4-dev.0",
3
+ "version": "7.0.4",
4
4
  "description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environments.",
5
5
  "author": "Hexagon <github.com/hexagon>",
6
6
  "homepage": "https://hexagon.github.io/croner",