@hazeljs/queue 0.2.0-beta.48 → 0.2.0-beta.49

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 +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @hazeljs/queue
2
2
 
3
- **Redis-backed Job Queue Module for HazelJS**
3
+ **Background jobs that don't get lost.**
4
4
 
5
- Add and process background jobs using BullMQ with Redis. Ideal for distributed systems, cron-triggered workloads, and long-running agent tasks.
5
+ BullMQ + Redis. Add jobs from controllers, process with `@Queue`. Delay, retry, priority, backoff. Works with CronModule for distributed cron. Agent tasks, emails, exports — queue it and forget it.
6
6
 
7
7
  [![npm version](https://img.shields.io/npm/v/@hazeljs/queue.svg)](https://www.npmjs.com/package/@hazeljs/queue)
8
8
  [![npm downloads](https://img.shields.io/npm/dm/@hazeljs/queue)](https://www.npmjs.com/package/@hazeljs/queue)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hazeljs/queue",
3
- "version": "0.2.0-beta.48",
3
+ "version": "0.2.0-beta.49",
4
4
  "description": "Redis-backed job queue module for HazelJS framework using BullMQ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -58,5 +58,5 @@
58
58
  "description": "Required for Redis connection. BullMQ uses ioredis for Redis connectivity."
59
59
  }
60
60
  },
61
- "gitHead": "0790e29cadc8406bad8993053322ee119c4acdc6"
61
+ "gitHead": "263b1f8c87ad9008ae21b6472860eb1b6cf1a6ce"
62
62
  }