Skip to content

Commit

Permalink
fix: @types/depd and @types/koa should be dependencies (#257)
Browse files Browse the repository at this point in the history
index.d.ts dependency on them

```ts
import KoaApplication = require('koa');
import depd = require('depd');
```
  • Loading branch information
fengmk2 authored Jan 1, 2023
1 parent aaacafa commit 91937c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
"node": ">= 14.17.0"
},
"devDependencies": {
"@types/depd": "^1.1.32",
"@types/koa": "^2.0.48",
"await-event": "^2.1.0",
"coffee": "^5.2.1",
"egg-bin": "^5.9.0",
Expand All @@ -55,6 +53,8 @@
},
"dependencies": {
"@eggjs/router": "^2.0.0",
"@types/depd": "^1.1.32",
"@types/koa": "^2.13.5",
"co": "^4.6.0",
"debug": "^4.1.1",
"depd": "^2.0.0",
Expand Down

0 comments on commit 91937c3

Please sign in to comment.