@h3ravel/queue 11.0.5 → 11.0.6
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/dist/index.cjs +1 -2
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -2
- package/package.json +7 -2
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/queue",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.6",
|
|
4
4
|
"description": "Job queues, workers and broadcasting support system for H3ravel.",
|
|
5
|
+
"h3ravel": {
|
|
6
|
+
"providers": [
|
|
7
|
+
"QueueServiceProvider"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
5
10
|
"type": "module",
|
|
6
11
|
"main": "./dist/index.js",
|
|
7
12
|
"types": "./dist/index.d.ts",
|
|
@@ -36,7 +41,7 @@
|
|
|
36
41
|
"laravel"
|
|
37
42
|
],
|
|
38
43
|
"peerDependencies": {
|
|
39
|
-
"@h3ravel/core": "^1.
|
|
44
|
+
"@h3ravel/core": "^1.20.0"
|
|
40
45
|
},
|
|
41
46
|
"devDependencies": {
|
|
42
47
|
"typescript": "^5.4.0"
|
package/dist/index.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","names":["ServiceProvider"],"sources":["../src/Providers/QueueServiceProvider.ts"],"sourcesContent":["import { ServiceProvider } from '@h3ravel/core'\n\n/**\n * Queues and workers.\n * \n * Register QueueManager.\n * Load drivers (Redis, in-memory).\n * Register job dispatcher and workers.\n * \n * Auto-Registered if @h3ravel/queue is installed\n */\nexport class QueueServiceProvider extends ServiceProvider {\n public static priority = 991\n\n register () {\n // Core bindings\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAWA,IAAa,uBAAb,cAA0CA,+BAAgB;CACtD,OAAc,WAAW;CAEzB,WAAY"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/Providers/QueueServiceProvider.ts"],"sourcesContent":["import { ServiceProvider } from '@h3ravel/core'\n\n/**\n * Queues and workers.\n * \n * Register QueueManager.\n * Load drivers (Redis, in-memory).\n * Register job dispatcher and workers.\n * \n * Auto-Registered if @h3ravel/queue is installed\n */\nexport class QueueServiceProvider extends ServiceProvider {\n public static priority = 991\n\n register () {\n // Core bindings\n }\n}\n"],"mappings":";;;;;;;;;;;;AAWA,IAAa,uBAAb,cAA0C,gBAAgB;CACtD,OAAc,WAAW;CAEzB,WAAY"}
|