Skip to content

Commit

Permalink
fix: bumped deps and standard error (#68)
Browse files Browse the repository at this point in the history
qlobber      ^5.0.0  →   ^5.0.3
 mqemitter    ^4.1.2  →   ^4.4.0
 nyc         ^15.0.1  →  ^15.1.0
 release-it  ^14.0.3  →  ^14.2.0
 standard    ^14.3.3  →  ^15.0.1
 through2     ^4.0.1  →   ^4.0.2
  • Loading branch information
robertsLando committed Oct 28, 2020
1 parent 9b2e979 commit dd8c501
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "persistence.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"lint-fix": "standard --fix",
"unit": "tape test.js | faucet",
"test": "npm run lint && npm run unit",
"coverage": "nyc --reporter=lcov tape test.js",
Expand Down Expand Up @@ -60,19 +61,19 @@
"concat-stream": "^2.0.0",
"faucet": "0.0.1",
"license-checker": "^25.0.1",
"mqemitter": "^4.1.2",
"nyc": "^15.0.1",
"mqemitter": "^4.4.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"pump": "^3.0.0",
"release-it": "^14.0.3",
"release-it": "^14.2.0",
"snazzy": "^9.0.0",
"standard": "^14.3.3",
"standard": "^15.0.1",
"tape": "^4.13.2",
"through2": "^4.0.1"
"through2": "^4.0.2"
},
"dependencies": {
"aedes-packet": "^2.3.1",
"from2": "^2.3.0",
"qlobber": "^5.0.0"
"qlobber": "^5.0.3"
}
}
2 changes: 1 addition & 1 deletion persistence.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ MemoryPersistence.prototype.outgoingStream = function (client) {
return from2.obj(function match (size, next) {
var entry

while ((entry = queue.shift()) != null) {
if ((entry = queue.shift()) != null) {
setImmediate(next, null, entry)
return
}
Expand Down

0 comments on commit dd8c501

Please sign in to comment.