Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Oct 27, 2024
1 parent 656625d commit c05c426
Show file tree
Hide file tree
Showing 25 changed files with 129 additions and 123 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18, 20]
node-version: [18, 20, 22]

steps:
- name: Check out
Expand Down
22 changes: 9 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,27 @@
},
"devDependencies": {
"@cordisjs/eslint-config": "^1.1.1",
"@koishijs/plugin-database-memory": "^3.4.0",
"@koishijs/plugin-database-memory": "^3.6.0",
"@koishijs/plugin-help": "^2.4.4",
"@koishijs/plugin-mock": "^2.6.6",
"@sinonjs/fake-timers": "^6.0.1",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^9.1.1",
"@types/node": "^20.11.30",
"@types/node": "^22.7.5",
"@types/sinonjs__fake-timers": "^6.0.4",
"c8": "^7.14.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.18.20",
"esbuild": "^0.23.1",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-mocha": "^10.4.1",
"koishi": "^4.17.9",
"koishi": "^4.18.0",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"yakumo": "^1.0.0-beta.16",
"yakumo-esbuild": "^1.0.0-beta.6",
"tsx": "^4.16.2",
"typescript": "^5.6.2",
"yakumo": "^1.0.0-beta.18",
"yakumo-esbuild": "^1.0.0-beta.7",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.4",
"yakumo-tsc": "^1.0.0-beta.5",
"yml-register": "^1.2.5"
}
}
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/client",
"description": "Koishi Console Client",
"version": "5.29.2",
"version": "5.30.0",
"main": "client/index.ts",
"exports": {
".": "./client/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/console",
"description": "Console Service for Koishi",
"version": "5.29.2",
"version": "5.30.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -31,6 +31,6 @@
"service"
],
"peerDependencies": {
"koishi": "^4.17.9"
"koishi": "^4.18.0"
}
}
1 change: 1 addition & 0 deletions packages/console/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export class EntryProvider extends DataService<Dict<EntryData>> {

export abstract class Console extends Service {
static filter = false
static inject = { optional: ['console'] }

private id = Math.random().toString(36).slice(2)

Expand Down
2 changes: 1 addition & 1 deletion packages/market/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"dependencies": {
"@koishijs/components": "^1.5.13",
"cosmokit": "^1.6.2",
"cosmokit": "^1.6.3",
"spark-md5": "^3.0.2"
}
}
6 changes: 3 additions & 3 deletions packages/online/app/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { connect, global, icons, root } from '@koishijs/client'
import IconDocs from './icons/docs.vue'
import IconForum from './icons/forum.vue'
import IconInstances from './icons/instances.vue'
import IconInstances from './icons/apps.vue'
import IconShare from './icons/share.vue'
import Home from './components/home.vue'
import Instances from './components/instances.vue'
import Instances from './components/apps.vue'
import ClientWebSocket from './socket'
import '@koishijs/client/app'

Expand All @@ -24,7 +24,7 @@ root.page({

root.page({
id: 'instances',
path: '/instances',
path: '/apps',
name: '实例管理',
icon: 'activity:instances',
order: 900,
Expand Down
4 changes: 2 additions & 2 deletions packages/online/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"@cordiverse/os": "^1.0.2",
"@cordiverse/path": "^1.0.0",
"@cordiverse/url": "^1.0.3",
"@koishijs/client": "^5.29.2",
"@koishijs/loader": "^4.5.9"
"@koishijs/client": "^5.30.0",
"@koishijs/loader": "^4.6.0"
},
"yakumo": {
"client": "./src/build.ts"
Expand Down
4 changes: 2 additions & 2 deletions packages/registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"@types/semver": "^7.5.8"
},
"dependencies": {
"cosmokit": "^1.6.2",
"cosmokit": "^1.6.3",
"p-map": "^4.0.0",
"semver": "^7.6.0"
"semver": "^7.6.3"
}
}
12 changes: 6 additions & 6 deletions plugins/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -53,13 +53,13 @@
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"devDependencies": {
"@koishijs/client": "^5.29.2"
"@koishijs/client": "^5.30.0"
},
"dependencies": {
"@koishijs/console": "^5.29.2"
"@koishijs/console": "^5.30.0"
}
}
14 changes: 9 additions & 5 deletions plugins/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,24 @@
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"peerDependenciesMeta": {
"@koishijs/plugin-console": {
"optional": true
}
},
"devDependencies": {
"@koishijs/client": "^5.29.2",
"@koishijs/plugin-console": "^5.29.2",
"@koishijs/client": "^5.30.0",
"@koishijs/plugin-console": "^5.30.0",
"@koishijs/plugin-locales": "^2.5.3",
"@koishijs/plugin-mock": "^2.6.6",
"@types/throttle-debounce": "^2.1.0"
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/throttle-debounce": "^2.1.0",
"chai": "^5.1.1",
"chai-as-promised": "^7.1.1"
},
"dependencies": {
"throttle-debounce": "^3.0.1"
Expand Down
10 changes: 5 additions & 5 deletions plugins/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"devDependencies": {
"@koishijs/assets": "^1.1.2",
"@koishijs/client": "^5.29.2",
"@koishijs/client": "^5.30.0",
"echarts": "^5.5.0",
"koishi": "^4.17.9",
"koishi": "^4.18.0",
"vue-echarts": "^6.6.9"
},
"dependencies": {
"@koishijs/console": "^5.29.2"
"@koishijs/console": "^5.30.0"
}
}
8 changes: 4 additions & 4 deletions plugins/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"devDependencies": {
"@koishijs/client": "^5.29.2"
"@koishijs/client": "^5.30.0"
},
"dependencies": {
"@koishijs/console": "^5.29.2"
"@koishijs/console": "^5.30.0"
}
}
10 changes: 5 additions & 5 deletions plugins/commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"peerDependenciesMeta": {
"@koishijs/plugin-console": {
"optional": true
}
},
"devDependencies": {
"@koishijs/client": "^5.29.2",
"@koishijs/client": "^5.30.0",
"@koishijs/plugin-config": "^2.8.5",
"@koishijs/plugin-console": "^5.29.2",
"@koishijs/plugin-console": "^5.30.0",
"@koishijs/plugin-locales": "^2.5.3",
"@koishijs/plugin-mock": "^2.6.6"
},
"dependencies": {
"@koishijs/console": "^5.29.2"
"@koishijs/console": "^5.30.0"
}
}
14 changes: 7 additions & 7 deletions plugins/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"node": "./lib/node/index.js",
"browser": "./lib/browser/index.mjs",
"types": "./lib/index.d.ts"
"browser": "./lib/browser/index.mjs"
},
"./shared": {
"require": "./lib/shared/index.js",
Expand Down Expand Up @@ -57,16 +57,16 @@
}
},
"peerDependencies": {
"@koishijs/loader": "^4.5.9",
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/loader": "^4.6.0",
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"devDependencies": {
"@koishijs/client": "^5.29.2",
"@koishijs/client": "^5.30.0",
"@koishijs/plugin-hmr": "^1.2.9"
},
"dependencies": {
"@koishijs/console": "^5.29.2",
"@koishijs/console": "^5.30.0",
"@koishijs/registry": "^7.0.3"
}
}
24 changes: 12 additions & 12 deletions plugins/console/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@koishijs/plugin-console",
"description": "Web User Interface for Koishi",
"version": "5.29.2",
"version": "5.30.0",
"main": "lib/node/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"node": {
"require": "./lib/node/index.js",
"import": "./lib/node/index.mjs"
},
"browser": "./lib/browser/index.mjs",
"types": "./lib/index.d.ts"
"browser": "./lib/browser/index.mjs"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
Expand Down Expand Up @@ -55,27 +55,27 @@
}
},
"peerDependencies": {
"@koishijs/client": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/client": "^5.30.0",
"koishi": "^4.18.0"
},
"peerDependenciesMeta": {
"@koishijs/client": {
"optional": true
}
},
"devDependencies": {
"@koishijs/client": "^5.29.2",
"@koishijs/loader": "^4.5.9",
"@koishijs/plugin-server": "^3.2.3",
"@koishijs/client": "^5.30.0",
"@koishijs/loader": "^4.6.0",
"@koishijs/plugin-server": "^3.2.4",
"@koishijs/plugin-server-proxy": "^1.2.0",
"@maikolib/vite-plugin-yaml": "^1.0.1",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^4.6.2",
"unocss": "^0.58.6",
"vite": "^4.5.3"
"@vitejs/plugin-vue": "^5.1.4",
"unocss": "^0.63.6",
"vite": "^5.4.10"
},
"dependencies": {
"@koishijs/console": "^5.29.2",
"@koishijs/console": "^5.30.0",
"open": "^8.4.2",
"uuid": "^8.3.2",
"ws": "^8.16.0"
Expand Down
14 changes: 8 additions & 6 deletions plugins/explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -59,16 +59,18 @@
"client": "./build/client.ts"
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.29.2",
"koishi": "^4.17.9"
"@koishijs/plugin-console": "^5.30.0",
"koishi": "^4.18.0"
},
"devDependencies": {
"@koishijs/client": "^5.29.2",
"@koishijs/client": "^5.30.0",
"@koishijs/plugin-console": "^5.30.0",
"@types/throttle-debounce": "^2.1.0",
"koishi": "^4.18.0",
"monaco-editor": "~0.44.0"
},
"dependencies": {
"@koishijs/console": "^5.29.2",
"@koishijs/console": "^5.30.0",
"anymatch": "^3.1.3",
"chardet": "^2.0.0",
"chokidar": "^3.6.0",
Expand Down
Loading

0 comments on commit c05c426

Please sign in to comment.