Skip to content

Commit 376e68f

Browse files
committed
Remove koa-adapter-bluebird
1 parent b02eb4e commit 376e68f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"kilometers-to-miles": "^1.0.3",
4141
"koa": "^2.13.0",
4242
"koa-adapter": "0.0.3",
43-
"koa-adapter-bluebird": "0.0.1",
4443
"koa-bodyparser": "^4.3.0",
4544
"koa-bunyan-logger": "^2.1.0",
4645
"koa-conditional-get": "^3.0.0",
@@ -90,7 +89,7 @@
9089
"@babel/plugin-transform-react-jsx": "^7.12.1",
9190
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
9291
"@babel/preset-env": "^7.12.1",
93-
"@swc/core": "^1.2.36",
92+
"@swc/core": "^1.2.148",
9493
"babel-loader": "^8.1.0",
9594
"base64-font-loader": "^0.0.4",
9695
"bunyan": "^1.8.14",

src/server/lib/routes/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const bcrypt = Promise.promisifyAll(require("bcryptjs"));
2323
const dao = require("../dao");
2424

2525
const router = (module.exports.router = new Router());
26-
const adapt = require("koa-adapter-bluebird"); // uses bluebird-co for performance
26+
const adapt = require("koa-adapter");
2727

2828
const INVALID_USERNAME_OR_PASSWORD = "Invalid username or password.";
2929

0 commit comments

Comments
 (0)