bullmq 5.63.2 → 5.64.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bullmq",
3
- "version": "5.63.2",
3
+ "version": "5.64.0",
4
4
  "description": "Queue for messages and jobs based on Redis",
5
5
  "homepage": "https://bullmq.io/",
6
6
  "main": "./dist/cjs/index.js",
@@ -28,7 +28,7 @@
28
28
  "copy:lua": "cpx \"./src/commands/*.lua\" ./dist/cjs/commands && cpx \"./src/commands/*.lua\" ./dist/esm/commands",
29
29
  "copy:lua:python": "cpx \"./rawScripts/*.lua\" ./python/bullmq/commands",
30
30
  "copy:main:type": "cpx \"./dist/esm/classes/main.d.ts\" ./dist/cjs/classes && cpx \"./dist/esm/classes/main-worker.d.ts\" ./dist/cjs/classes",
31
- "coverage": "nyc --reporter=text --reporter=lcovonly npm run test",
31
+ "coverage": "c8 --reporter=text --reporter=lcovonly npm run test",
32
32
  "docs": "typedoc --excludeExternals --excludeProtected --excludePrivate --readme none src/index.ts",
33
33
  "docs:json": "typedoc --excludeExternals --excludeProtected --excludePrivate --readme none src/index.ts --json ./apiVersions/v5.json --name v5",
34
34
  "dc:up": "docker-compose -f docker-compose.yml up -d",
@@ -64,7 +64,6 @@
64
64
  "devDependencies": {
65
65
  "@commitlint/cli": "^20.1.0",
66
66
  "@commitlint/config-conventional": "^20.0.0",
67
- "@istanbuljs/nyc-config-typescript": "^1.0.2",
68
67
  "@semantic-release/changelog": "^6.0.1",
69
68
  "@semantic-release/commit-analyzer": "^13.0.1",
70
69
  "@semantic-release/exec": "^7.1.0",
@@ -83,6 +82,7 @@
83
82
  "@types/sinon": "^10.0.13",
84
83
  "@typescript-eslint/eslint-plugin": "^8.37.0",
85
84
  "@typescript-eslint/parser": "^8.37.0",
85
+ "c8": "^10.1.3",
86
86
  "chai": "^4.3.4",
87
87
  "chai-as-promised": "^7.1.1",
88
88
  "coveralls-next": "^5.0.0",
@@ -95,14 +95,12 @@
95
95
  "eslint-plugin-tsdoc": "^0.4.0",
96
96
  "fast-glob": "^3.3.3",
97
97
  "husky": "^8.0.1",
98
- "istanbul": "^0.4.5",
99
98
  "lint-staged": "^16.2.6",
100
99
  "madge": "^8.0.0",
101
100
  "minimatch": "^9.0.3",
102
101
  "mocha": "^11.1.0",
103
102
  "mocha-lcov-reporter": "^1.3.0",
104
103
  "moment": "^2.29.4",
105
- "nyc": "^17.1.0",
106
104
  "prettier": "^3.6.2",
107
105
  "pretty-quick": "^4.2.2",
108
106
  "progress": "^2.0.3",
@@ -116,44 +114,30 @@
116
114
  "typedoc": "^0.28.2",
117
115
  "typescript": "^5.9.2"
118
116
  },
119
- "nyc": {
120
- "extends": "@istanbuljs/nyc-config-typescript",
117
+ "c8": {
121
118
  "all": true,
122
119
  "check-coverage": true,
123
- "include": [
124
- "src/**/*.ts"
125
- ],
126
- "exclude": [
127
- "bullmq-tests/test_*.ts"
128
- ],
129
120
  "lines": 80,
130
121
  "functions": 80,
131
122
  "branches": 70,
132
123
  "statements": 80,
133
- "watermarks": {
134
- "lines": [
135
- 80,
136
- 95
137
- ],
138
- "functions": [
139
- 80,
140
- 95
141
- ],
142
- "branches": [
143
- 80,
144
- 95
145
- ],
146
- "statements": [
147
- 80,
148
- 95
149
- ]
150
- }
124
+ "exclude": [
125
+ "src/enums/*.ts",
126
+ "src/interfaces/*.ts"
127
+ ],
128
+ "include": [
129
+ "src/**/*.ts"
130
+ ]
151
131
  },
152
132
  "commitlint": {
153
133
  "extends": [
154
134
  "@commitlint/config-conventional"
155
135
  ]
156
136
  },
137
+ "resolutions": {
138
+ "glob": "^13.0.0",
139
+ "js-yaml": "^4.1.1"
140
+ },
157
141
  "lint-staged": {
158
142
  "*.{js,ts}": "npm run eslint:fix"
159
143
  },