@12-apps/jobs 4.4.0 → 4.5.0
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/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@12-apps/jobs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"sideEffects": false,
|
|
5
6
|
"description": "Generic background-job library: a typed job registry with retries, exponential backoff and cron schedules, behind a swappable driver port (BullMQ/Redis in production, inline execution in tests and zero-config dev). The runtime half (./server) is one factory — createApiJobs: driver resolution, worker bootstrap, graceful drain, the single-writer sweep lease and a health endpoint — with a Hono adapter (./hono) and the package-owned SweepLease Prisma partial + migrations. Knows nothing about the host app's domain, ORM or transport.",
|
|
6
7
|
"exports": {
|
|
7
8
|
".": "./src/index.ts",
|
|
@@ -24,8 +25,8 @@
|
|
|
24
25
|
"bullmq": "^5.81.2"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
|
-
"@12-apps/eslint-config": "^1.
|
|
28
|
-
"@12-apps/typescript-config": "^1.
|
|
28
|
+
"@12-apps/eslint-config": "^1.22.0",
|
|
29
|
+
"@12-apps/typescript-config": "^1.21.0",
|
|
29
30
|
"eslint": "^9.39.1",
|
|
30
31
|
"eslint-plugin-test-flakiness": "^1.4.0",
|
|
31
32
|
"hono": "^4.6.0",
|