@hazeljs/cron 0.2.0-beta.48 → 0.2.0-beta.50

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 +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @hazeljs/cron
2
2
 
3
- **Cron Job Scheduling Module for HazelJS**
3
+ **Scheduled tasks as decorators. No `setInterval` hacks.**
4
4
 
5
- Schedule and manage recurring tasks with cron expressions and decorator-based API.
5
+ `@Cron('0 9 * * *')` for daily at 9am. `@Interval(60000)` for every minute. Real cron expressions, timezone support, overlap prevention. Background jobs that actually run when you expect.
6
6
 
7
7
  [![npm version](https://img.shields.io/npm/v/@hazeljs/cron.svg)](https://www.npmjs.com/package/@hazeljs/cron)
8
8
  [![npm downloads](https://img.shields.io/npm/dm/@hazeljs/cron)](https://www.npmjs.com/package/@hazeljs/cron)
@@ -438,5 +438,5 @@ Apache 2.0 © [HazelJS](https://hazeljs.com)
438
438
 
439
439
  - [Documentation](https://hazeljs.com/docs/packages/cron)
440
440
  - [GitHub](https://github.com/hazel-js/hazeljs)
441
- - [Issues](https://github.com/hazeljs/hazel-js/issues)
441
+ - [Issues](https://github.com/hazel-js/hazeljs/issues)
442
442
  - [Discord](https://discord.gg/hazeljs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hazeljs/cron",
3
- "version": "0.2.0-beta.48",
3
+ "version": "0.2.0-beta.50",
4
4
  "description": "Cron job scheduling module for HazelJS framework",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -50,5 +50,5 @@
50
50
  "peerDependencies": {
51
51
  "@hazeljs/core": ">=0.2.0-beta.0"
52
52
  },
53
- "gitHead": "0790e29cadc8406bad8993053322ee119c4acdc6"
53
+ "gitHead": "aefca57a74856e3b0055ad65843e2a61681f6b99"
54
54
  }