Skip to content

Commit

Permalink
Updated modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
aichholzer committed Dec 4, 2018
1 parent fcdcb3a commit e4d71d8
Show file tree
Hide file tree
Showing 8 changed files with 657 additions and 714 deletions.
886 changes: 456 additions & 430 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -28,18 +28,18 @@
"devDependencies": {
"codecov": "^3.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"lerna": "^3.4.3",
"lerna": "^3.5.1",
"mocha": "^5.2.0",
"npm-check": "^5.8.0",
"nyc": "^13.1.0",
"prettier": "^1.14.2",
"prettier": "^1.15.3",
"should": "^13.2.3",
"sinon": "^7.0.0",
"sinon": "^7.1.1",
"supertest": "^3.3.0"
}
}
250 changes: 141 additions & 109 deletions packages/benchmarks/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/benchmarks/package.json
Expand Up @@ -20,16 +20,16 @@
},
"license": "MIT",
"dependencies": {
"autocannon": "^3.0.1",
"autocannon": "^3.2.0",
"cli-table": "^0.3.1",
"express": "^4.16.4",
"fastify": "^1.12.1",
"kleur": "^2.0.2",
"fastify": "^1.13.1",
"kleur": "^3.0.0",
"minimist": "^1.2.0",
"ora": "^3.0.0",
"pancho": "^1.0.2",
"polka": "^0.5.1",
"rayo": "^1.2.4"
"rayo": "^1.2.5"
},
"bin": {
"rayobench": "./index.js"
Expand Down
177 changes: 32 additions & 145 deletions packages/rayo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions packages/storm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/storm/package.json
Expand Up @@ -21,6 +21,6 @@
},
"dependencies": {
"parseurl": "^1.3.2",
"pino": "^5.8.0"
"pino": "^5.9.0"
}
}
6 changes: 2 additions & 4 deletions test/utils/helpers.js
Expand Up @@ -24,10 +24,8 @@ module.exports = {

wrap: (module, handler, options) =>
createServer((req, res) =>
module(options)(
req,
res,
(error) => (error ? res.end(error.message) : handler(req, res))
module(options)(req, res, (error) =>
error ? res.end(error.message) : handler(req, res)
)
)
};

0 comments on commit e4d71d8

Please sign in to comment.