croner 4.3.16 → 4.3.17
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.
- package/README.md +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -222,6 +222,8 @@ The expressions of Croner are very similar to the ones of Vixie Cron, with a few
|
|
|
222
222
|
|
|
223
223
|
* Croner also allow you to pass a javascript Date object, or a ISO 8601 formatted string, as a pattern. The scheduled function will trigger once at the specified date/time. If you use a timezone different from local, you pass ISO 8601 local time in target location, and specify timezone using the options (2nd parameter).
|
|
224
224
|
|
|
225
|
+
* **Important**: Croner does not take care of runs missed during daytime savings time (DST) shifts. E.g.: If the clock shifts från 23:59:59 to 01:00:00 a job scheduled between 00:00:00 and 00:59:59 that day would be missed. This might change in a future major release. Current state at [#132](https://github.com/Hexagon/croner/issues/132).
|
|
226
|
+
|
|
225
227
|
```javascript
|
|
226
228
|
// ┌──────────────── (optional) second (0 - 59)
|
|
227
229
|
// │ ┌────────────── minute (0 - 59)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "croner",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.17",
|
|
4
4
|
"description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environmens.",
|
|
5
5
|
"author": "Hexagon <github.com/hexagon>",
|
|
6
6
|
"homepage": "https://hexagon.github.io/croner",
|