Skip to content

Commit

Permalink
chore: fix missing dependency, fix #1393
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Apr 26, 2024
1 parent 368ab67 commit 809e6da
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/koishi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@koishijs/core": "4.17.5",
"@koishijs/loader": "4.5.5",
"@koishijs/plugin-proxy-agent": "^0.3.0",
"@koishijs/plugin-server": "^3.2.0",
"@koishijs/plugin-server": "^3.2.1",
"@koishijs/utils": "^7.2.1",
"@satorijs/satori": "^3.7.0",
"cac": "^6.7.14",
Expand Down
2 changes: 1 addition & 1 deletion plugins/mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"koishi": "^4.17.5"
},
"devDependencies": {
"@koishijs/plugin-server": "^3.2.0",
"@koishijs/plugin-server": "^3.2.1",
"koishi": "^4.17.5"
}
}
2 changes: 1 addition & 1 deletion plugins/server/index.cjs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@cordisjs/server')
module.exports = require('@cordisjs/plugin-server')
4 changes: 2 additions & 2 deletions plugins/server/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Server from '@cordisjs/server'
import Server from '@cordisjs/plugin-server'

export default Server
export * from '@cordisjs/server'
export * from '@cordisjs/plugin-server'
4 changes: 2 additions & 2 deletions plugins/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-server",
"description": "Server service for Koishi",
"version": "3.2.0",
"version": "3.2.1",
"type": "module",
"main": "index.cjs",
"module": "index.mjs",
Expand Down Expand Up @@ -57,6 +57,6 @@
"koishi": "^4.17.5"
},
"dependencies": {
"@cordisjs/plugin-server": "^0.2.0"
"@cordisjs/plugin-server": "^0.2.1"
}
}

0 comments on commit 809e6da

Please sign in to comment.