@h3ravel/queue 11.0.10 → 11.0.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/queue",
3
- "version": "11.0.10",
3
+ "version": "11.0.12",
4
4
  "description": "Job queues, workers and broadcasting support system for H3ravel.",
5
5
  "h3ravel": {
6
6
  "providers": [
@@ -8,15 +8,15 @@
8
8
  ]
9
9
  },
10
10
  "type": "module",
11
- "main": "./dist/index.mjs",
12
- "types": "./dist/index.d.mts",
13
- "module": "./dist/index.mjs",
11
+ "main": "./dist/index.cjs",
12
+ "types": "./dist/index.d.ts",
13
+ "module": "./dist/index.js",
14
14
  "exports": {
15
15
  ".": {
16
- "types": "./dist/index.d.mts",
17
- "import": "./dist/index.mjs",
16
+ "import": "./dist/index.js",
18
17
  "require": "./dist/index.cjs"
19
- }
18
+ },
19
+ "./*": "./*"
20
20
  },
21
21
  "files": [
22
22
  "dist"
@@ -41,15 +41,16 @@
41
41
  "laravel"
42
42
  ],
43
43
  "peerDependencies": {
44
- "@h3ravel/core": "^1.21.3"
44
+ "@h3ravel/core": "^1.21.5"
45
45
  },
46
46
  "devDependencies": {
47
47
  "typescript": "^5.4.0"
48
48
  },
49
49
  "scripts": {
50
+ "barrel": "barrelsby --directory src --delete --singleQuotes",
50
51
  "build": "tsdown --config-loader unconfig",
51
52
  "dev": "tsx watch src/index.ts",
52
- "start": "node dist/index.mjs",
53
+ "start": "node dist/index.js",
53
54
  "lint": "eslint . --ext .ts",
54
55
  "test": "jest --passWithNoTests",
55
56
  "version-patch": "pnpm version patch"
package/dist/index.d.mts DELETED
@@ -1,20 +0,0 @@
1
- /// <reference path="./app.globals.d.ts" />
2
- import { ServiceProvider } from "@h3ravel/core";
3
-
4
- //#region src/Providers/QueueServiceProvider.d.ts
5
-
6
- /**
7
- * Queues and workers.
8
- *
9
- * Register QueueManager.
10
- * Load drivers (Redis, in-memory).
11
- * Register job dispatcher and workers.
12
- *
13
- * Auto-Registered if @h3ravel/queue is installed
14
- */
15
- declare class QueueServiceProvider extends ServiceProvider {
16
- static priority: number;
17
- register(): void;
18
- }
19
- //#endregion
20
- export { QueueServiceProvider };
File without changes
File without changes