Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Feb 21, 2022
1 parent d25dadb commit c6e9b8e
Show file tree
Hide file tree
Showing 60 changed files with 158 additions and 157 deletions.
2 changes: 1 addition & 1 deletion build/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async function compile(name: string) {
return Promise.all([
bundle({
...options,
outfile: base + '/' + meta.main,
outfile: base + '/' + meta.module.replace('browser', 'node'),
plugins: [
usePlatformPlugin('node'),
externalPlugin,
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/cli",
"description": "CLI for Koishi",
"version": "4.2.2",
"version": "4.3.1",
"main": "lib/utils.js",
"typings": "lib/utils.d.ts",
"engines": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"koishi"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
Expand All @@ -48,4 +48,4 @@
"prompts": "^2.4.2",
"throttle-debounce": "^3.0.1"
}
}
}
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/core",
"description": "Core Features for Koishi",
"version": "4.2.2",
"version": "4.3.1",
"main": "lib/node.js",
"module": "lib/browser.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -37,8 +37,8 @@
"chai-shape": "^1.0.0"
},
"dependencies": {
"@koishijs/utils": "^5.1.0",
"@koishijs/utils": "^5.1.2",
"fastest-levenshtein": "^1.0.12",
"schemastery": "^2.4.2"
"schemastery": "^2.5.0"
}
}
}
4 changes: 2 additions & 2 deletions packages/helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"command"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2"
}
}
}
8 changes: 4 additions & 4 deletions packages/koishi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "koishi",
"description": "Cross-Platform Chatbot Framework Made with Love",
"version": "4.2.2",
"version": "4.3.1",
"main": "lib/index.js",
"typings": "lib/node.d.ts",
"engines": {
Expand Down Expand Up @@ -33,8 +33,8 @@
},
"dependencies": {
"@koa/router": "^10.1.1",
"@koishijs/core": "^4.2.2",
"@koishijs/utils": "^5.1.0",
"@koishijs/core": "^4.3.1",
"@koishijs/utils": "^5.1.2",
"@types/koa": "*",
"@types/koa__router": "*",
"@types/ws": "^8.2.2",
Expand All @@ -47,4 +47,4 @@
"proxy-agent": "^5.0.0",
"ws": "^8.4.2"
}
}
}
6 changes: 3 additions & 3 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"koishi"
],
"peerDependencies": {
"@koishijs/cli": "^4.2.2",
"@koishijs/client": "^3.1.1"
"@koishijs/cli": "^4.3.1",
"@koishijs/client": "^3.1.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
Expand All @@ -51,4 +51,4 @@
"prompts": "^2.4.2",
"semver": "^7.3.5"
}
}
}
7 changes: 4 additions & 3 deletions packages/segment/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "@koishijs/segment",
"description": "Segment Manipulation",
"version": "1.0.0",
"version": "1.1.1",
"main": "index.js",
"module": "lib/browser.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
"lib",
"index.js"
],
"author": "Shigma <shigma10826@gmail.com>",
"license": "MIT",
Expand All @@ -27,4 +28,4 @@
"koishi",
"utilities"
]
}
}
4 changes: 2 additions & 2 deletions packages/ui-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"vue": "^3.2.21"
},
"dependencies": {
"@koishijs/core": "^4.2.2"
"@koishijs/core": "^4.3.1"
}
}
}
4 changes: 2 additions & 2 deletions packages/ui-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"vue": "^3.2.21"
},
"dependencies": {
"@koishijs/core": "^4.2.2",
"@koishijs/core": "^4.3.1",
"@vueuse/core": "^7.5.3",
"monaco-editor": "^0.31.1"
}
}
}
6 changes: 3 additions & 3 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/utils",
"description": "Utilities for Koishi",
"version": "5.1.0",
"version": "5.1.2",
"main": "lib/node.js",
"module": "lib/browser.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -32,7 +32,7 @@
"@types/supports-color": "^8.1.1"
},
"dependencies": {
"@koishijs/segment": "^1.0.0",
"@koishijs/segment": "^1.1.1",
"supports-color": "^8.1.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2"
},
"dependencies": {
"@koishijs/helpers": "^1.0.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/bind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^1.0.2",
"@koishijs/plugin-mock": "^1.0.2"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/callme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^1.0.2",
"@koishijs/plugin-mock": "^1.0.2"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/rate-limit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2"
},
"dependencies": {
"@koishijs/helpers": "^1.0.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/schedule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
"@koishijs/plugin-mock": "^1.0.2"
},
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/sudo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^1.0.2",
Expand All @@ -41,4 +41,4 @@
"dependencies": {
"@koishijs/helpers": "^1.0.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/switch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"required:database"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^1.0.2",
Expand All @@ -42,4 +42,4 @@
"dependencies": {
"@koishijs/helpers": "^1.0.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/a11y/verifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
"verifier"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2"
}
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"impl:adapter"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2",
Expand All @@ -43,4 +43,4 @@
"form-data": "^4.0.0",
"ws": "^8.4.2"
}
}
}
6 changes: 3 additions & 3 deletions plugins/adapter/kaiheila/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-kaiheila",
"description": "Kaiheila adapter for Koishi",
"version": "2.0.3",
"version": "2.0.4",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand All @@ -25,7 +25,7 @@
"impl:adapter"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2"
Expand All @@ -35,4 +35,4 @@
"form-data": "^4.0.0",
"ws": "^8.4.2"
}
}
}
6 changes: 3 additions & 3 deletions plugins/adapter/onebot/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-onebot",
"description": "CQHTTP adapter for Koishi",
"version": "4.1.1",
"version": "4.1.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand All @@ -28,7 +28,7 @@
"impl:adapter"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@koishijs/plugin-mock": "^1.0.2",
Expand All @@ -38,4 +38,4 @@
"qface": "^1.2.0",
"ws": "^8.4.2"
}
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/qqguild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"impl:adapter"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"dependencies": {
"@qq-guild-sdk/core": "^1.1.4",
"qface": "^1.2.0"
}
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/telegram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"impl:adapter"
],
"peerDependencies": {
"koishi": "^4.2.2"
"koishi": "^4.3.1"
},
"devDependencies": {
"@types/es-aggregate-error": "^1.0.2",
Expand All @@ -41,4 +41,4 @@
"file-type": "^16.5.3",
"form-data": "^4.0.0"
}
}
}
Loading

0 comments on commit c6e9b8e

Please sign in to comment.