Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Dec 5, 2019
1 parent 2c1760d commit 6b99d69
Show file tree
Hide file tree
Showing 3 changed files with 583 additions and 664 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ class Bull {
if (!processors)
throw new Error(`Queue "${name}" did not have any processors`);

for (let p = 0; p < processors.length; p++) {
for (const element of processors) {
queue.process(
processors[p].name || '*',
processors[p].concurrency || this.config.concurrency,
processors[p].processor
element.name || '*',
element.concurrency || this.config.concurrency,
element.processor
);
}

Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,30 +25,30 @@
],
"dependencies": {
"@ladjs/redis": "^1.0.3",
"@ladjs/shared-config": "^0.0.9",
"auto-bind": "^2.1.0",
"bull": "^3.10.0",
"@ladjs/shared-config": "^1.0.0",
"auto-bind": "^3.0.0",
"bull": "^3.12.1",
"is-string-and-not-blank": "^0.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"ava": "^2.3.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.1",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^2.4.0",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"delay": "^4.3.0",
"eslint": "6.3.0",
"eslint": "6.7.2",
"eslint-config-xo-lass": "^1.0.3",
"eslint-plugin-node": "^10.0.0",
"fixpack": "^2.3.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"ms": "^2.1.2",
"nyc": "^14.1.1",
"remark-cli": "^7.0.0",
"remark-cli": "^7.0.1",
"remark-preset-github": "^0.0.16",
"xo": "^0.24.0"
"xo": "^0.25.3"
},
"engines": {
"node": ">=8.3"
Expand Down
Loading

0 comments on commit 6b99d69

Please sign in to comment.