Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed May 25, 2024
1 parent 94bad05 commit ebd4265
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
16 changes: 8 additions & 8 deletions packages/chat/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/plugin-chat",
"description": "Show plugin dependency graph for Cordis",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"main": "lib/index.js",
"files": [
Expand Down Expand Up @@ -40,17 +40,17 @@
}
},
"peerDependencies": {
"@cordisjs/plugin-webui": "^0.1.3",
"@satorijs/core": "^4.0.0",
"@cordisjs/plugin-webui": "^0.1.4",
"@satorijs/core": "^4.1.0",
"@satorijs/plugin-database": "^0.1.1"
},
"devDependencies": {
"@cordisjs/client": "^0.1.3",
"@cordisjs/plugin-http": "^0.4.2",
"@cordisjs/client": "^0.1.4",
"@cordisjs/plugin-http": "^0.5.1",
"@cordisjs/plugin-server-proxy": "^0.2.0",
"@cordisjs/plugin-webui": "^0.1.3",
"@satorijs/adapter-satori": "^1.2.0",
"@satorijs/core": "^4.0.0",
"@cordisjs/plugin-webui": "^0.1.4",
"@satorijs/adapter-satori": "^1.3.0",
"@satorijs/core": "^4.1.0",
"@satorijs/plugin-database": "^0.1.1"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/chat/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Data {

export const name = 'chat'

export const inject = ['webui', 'satori.database']
export const inject = ['webui']

export interface Config {}

Expand Down
7 changes: 4 additions & 3 deletions packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"description": "Database for Satori protocol",
"version": "0.1.1",
"type": "module",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
Expand Down Expand Up @@ -37,11 +38,11 @@
}
},
"devDependencies": {
"@satorijs/plugin-server": "^2.5.0",
"@satorijs/plugin-server": "^2.6.0",
"minato": "^3.3.0"
},
"peerDependencies": {
"@satorijs/core": "^4.0.0",
"@satorijs/core": "^4.1.0",
"minato": "^3.3.0"
},
"dependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/status/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/plugin-status",
"description": "Show login status for Satori",
"version": "0.1.1",
"version": "0.1.3",
"type": "module",
"main": "lib/index.js",
"files": [
Expand Down Expand Up @@ -40,12 +40,12 @@
}
},
"peerDependencies": {
"@cordisjs/plugin-webui": "^0.1.3",
"@satorijs/core": "^4.0.0"
"@cordisjs/plugin-webui": "^0.1.4",
"@satorijs/core": "^4.1.0"
},
"devDependencies": {
"@cordisjs/client": "^0.1.3",
"@cordisjs/plugin-manager": "^0.1.0",
"@cordisjs/client": "^0.1.4",
"@cordisjs/plugin-manager": "^0.1.1",
"@cordisjs/plugin-server-proxy": "^0.2.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/status/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function apply(ctx: Context) {
if (bot.hidden) continue
bots[bot.sid] = {
...bot.toJSON(),
paths: ctx.get('loader')?.paths(bot.ctx.scope),
paths: ctx.get('loader')?.locate(),
error: bot.error?.message,
messageSent: bot._messageSent.get(),
messageReceived: bot._messageReceived.get(),
Expand Down

0 comments on commit ebd4265

Please sign in to comment.