croner 7.0.3-dev.0 → 7.0.3
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 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -68,13 +68,13 @@ const { Cron } = require("croner");
|
|
|
68
68
|
Using Deno
|
|
69
69
|
|
|
70
70
|
```typescript
|
|
71
|
-
import { Cron } from "https://deno.land/x/croner@
|
|
71
|
+
import { Cron } from "https://deno.land/x/croner@7.0.3/dist/croner.js";
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
In a webpage using the UMD-module
|
|
75
75
|
|
|
76
76
|
```html
|
|
77
|
-
<script src="https://cdn.jsdelivr.net/npm/croner@
|
|
77
|
+
<script src="https://cdn.jsdelivr.net/npm/croner@7/dist/croner.umd.min.js"></script>
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "croner",
|
|
3
|
-
"version": "7.0.3
|
|
3
|
+
"version": "7.0.3",
|
|
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",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"eslint": "^8.49.0",
|
|
77
77
|
"minitz": "^4.0.5",
|
|
78
|
-
"rollup": "^
|
|
78
|
+
"rollup": "^4.1.4",
|
|
79
79
|
"typescript": "^5.1.6",
|
|
80
80
|
"uglify-js": "^3.17.4",
|
|
81
81
|
"uvu": "^0.5.6"
|