bunqueue 2.8.47 → 2.8.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.
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunqueue",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.49",
|
|
4
4
|
"description": "High-performance job queue for Bun & AI agents. SQLite persistence, cron scheduling, priorities, retries, DLQ, webhooks, native MCP server. Zero external infrastructure.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"build": "bun build --compile --minify src/main.ts --outfile dist/bunqueue",
|
|
58
58
|
"build:lib": "tsc -p tsconfig.build.json",
|
|
59
59
|
"docs:api": "bun run scripts/build-api-reference.ts",
|
|
60
|
+
"check:docs-data": "bun run scripts/check-docs-data.ts",
|
|
60
61
|
"test": "BUNQUEUE_EMBEDDED=1 bun test",
|
|
61
62
|
"test:model": "BUNQUEUE_EMBEDDED=1 bun test test/model-based/queue-model.test.ts test/model-based/workflow-model.test.ts test/model-based/backup-model.test.ts test/model-based/monitoring-model.test.ts test/model-based/enterprise-telemetry-model.test.ts",
|
|
62
63
|
"test:sandbox": "bun run scripts/test-sandbox.ts",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"format:check": "biome format src",
|
|
74
75
|
"typecheck": "tsc --noEmit",
|
|
75
76
|
"check:biome": "biome check src",
|
|
76
|
-
"check": "bun run typecheck && biome check src",
|
|
77
|
+
"check": "bun run typecheck && biome check src && bun run check:docs-data",
|
|
77
78
|
"prepublishOnly": "bun run build:lib"
|
|
78
79
|
},
|
|
79
80
|
"dependencies": {
|