Skip to content

Commit ebd4265

Browse files
committed
chore: bump versions
1 parent 94bad05 commit ebd4265

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

packages/chat/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@satorijs/plugin-chat",
33
"description": "Show plugin dependency graph for Cordis",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"type": "module",
66
"main": "lib/index.js",
77
"files": [
@@ -40,17 +40,17 @@
4040
}
4141
},
4242
"peerDependencies": {
43-
"@cordisjs/plugin-webui": "^0.1.3",
44-
"@satorijs/core": "^4.0.0",
43+
"@cordisjs/plugin-webui": "^0.1.4",
44+
"@satorijs/core": "^4.1.0",
4545
"@satorijs/plugin-database": "^0.1.1"
4646
},
4747
"devDependencies": {
48-
"@cordisjs/client": "^0.1.3",
49-
"@cordisjs/plugin-http": "^0.4.2",
48+
"@cordisjs/client": "^0.1.4",
49+
"@cordisjs/plugin-http": "^0.5.1",
5050
"@cordisjs/plugin-server-proxy": "^0.2.0",
51-
"@cordisjs/plugin-webui": "^0.1.3",
52-
"@satorijs/adapter-satori": "^1.2.0",
53-
"@satorijs/core": "^4.0.0",
51+
"@cordisjs/plugin-webui": "^0.1.4",
52+
"@satorijs/adapter-satori": "^1.3.0",
53+
"@satorijs/core": "^4.1.0",
5454
"@satorijs/plugin-database": "^0.1.1"
5555
},
5656
"dependencies": {

packages/chat/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface Data {
99

1010
export const name = 'chat'
1111

12-
export const inject = ['webui', 'satori.database']
12+
export const inject = ['webui']
1313

1414
export interface Config {}
1515

packages/database/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"description": "Database for Satori protocol",
44
"version": "0.1.1",
55
"type": "module",
6-
"module": "lib/index.js",
6+
"main": "lib/index.js",
7+
"types": "lib/index.d.ts",
78
"files": [
89
"lib"
910
],
@@ -37,11 +38,11 @@
3738
}
3839
},
3940
"devDependencies": {
40-
"@satorijs/plugin-server": "^2.5.0",
41+
"@satorijs/plugin-server": "^2.6.0",
4142
"minato": "^3.3.0"
4243
},
4344
"peerDependencies": {
44-
"@satorijs/core": "^4.0.0",
45+
"@satorijs/core": "^4.1.0",
4546
"minato": "^3.3.0"
4647
},
4748
"dependencies": {

packages/status/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@satorijs/plugin-status",
33
"description": "Show login status for Satori",
4-
"version": "0.1.1",
4+
"version": "0.1.3",
55
"type": "module",
66
"main": "lib/index.js",
77
"files": [
@@ -40,12 +40,12 @@
4040
}
4141
},
4242
"peerDependencies": {
43-
"@cordisjs/plugin-webui": "^0.1.3",
44-
"@satorijs/core": "^4.0.0"
43+
"@cordisjs/plugin-webui": "^0.1.4",
44+
"@satorijs/core": "^4.1.0"
4545
},
4646
"devDependencies": {
47-
"@cordisjs/client": "^0.1.3",
48-
"@cordisjs/plugin-manager": "^0.1.0",
47+
"@cordisjs/client": "^0.1.4",
48+
"@cordisjs/plugin-manager": "^0.1.1",
4949
"@cordisjs/plugin-server-proxy": "^0.2.0"
5050
},
5151
"dependencies": {

packages/status/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function apply(ctx: Context) {
7373
if (bot.hidden) continue
7474
bots[bot.sid] = {
7575
...bot.toJSON(),
76-
paths: ctx.get('loader')?.paths(bot.ctx.scope),
76+
paths: ctx.get('loader')?.locate(),
7777
error: bot.error?.message,
7878
messageSent: bot._messageSent.get(),
7979
messageReceived: bot._messageReceived.get(),

0 commit comments

Comments
 (0)