Skip to content

Commit

Permalink
chore: release v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Apr 29, 2024
1 parent a85dcc9 commit 0990f20
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 18 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Cordis WebUI

## Packages

### Core packages

- @cordisjs/client
- @cordisjs/components
- @cordisjs/registry

### Official plugins

- @cordisjs/plugin-config
- @cordisjs/plugin-insight
- @cordisjs/plugin-webui
6 changes: 3 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cordisjs/client",
"description": "Koishi Console Client",
"version": "0.28.3",
"version": "0.1.0",
"type": "module",
"exports": {
".": "./client/index.ts",
Expand All @@ -24,7 +24,7 @@
"cordis-webui": "bin.js"
},
"author": "Shigma <[email protected]>",
"license": "AGPL-3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cordisjs/webui.git",
Expand All @@ -44,7 +44,7 @@
"build"
],
"dependencies": {
"@cordisjs/components": "1.5.11",
"@cordisjs/components": "0.1.0",
"@maikolib/vite-plugin-yaml": "^1.0.1",
"@satorijs/protocol": "^1.3.1",
"@vitejs/plugin-vue": "^4.6.2",
Expand Down
5 changes: 3 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@cordisjs/components",
"description": "Client Components for Cordis WebUI",
"version": "1.5.11",
"version": "0.1.0",
"type": "module",
"main": "client/index.ts",
"files": [
"client",
"tsconfig.client.json"
],
"author": "Shigma <[email protected]>",
"license": "AGPL-3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cordisjs/webui.git",
Expand Down
13 changes: 7 additions & 6 deletions plugins/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dist"
],
"author": "Shigma <[email protected]>",
"license": "AGPL-3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cordisjs/webui.git",
Expand All @@ -48,20 +48,21 @@
},
"service": {
"required": [
"console"
"webui"
]
}
},
"peerDependencies": {
"@cordisjs/loader": "^0.9.0",
"@cordisjs/plugin-webui": "^0.28.3",
"@cordisjs/plugin-webui": "^0.1.0",
"cordis": "^3.14.0"
},
"devDependencies": {
"@cordisjs/client": "^0.28.3",
"@cordisjs/plugin-hmr": "^0.2.0"
"@cordisjs/client": "^0.1.0",
"@cordisjs/plugin-hmr": "^0.2.1"
},
"dependencies": {
"@cordisjs/registry": "^7.0.3"
"@cordisjs/registry": "^7.0.3",
"cosmokit": "^1.6.2"
}
}
8 changes: 4 additions & 4 deletions plugins/insight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"src"
],
"author": "Shigma <[email protected]>",
"license": "AGPL-3.0",
"license": "MIT",
"scripts": {
"lint": "eslint src --ext .ts"
},
Expand Down Expand Up @@ -38,16 +38,16 @@
},
"service": {
"required": [
"console"
"webui"
]
}
},
"peerDependencies": {
"@cordisjs/plugin-webui": "^0.28.3",
"@cordisjs/plugin-webui": "^0.1.0",
"cordis": "^3.14.0"
},
"devDependencies": {
"@cordisjs/client": "^0.28.3",
"@cordisjs/client": "^0.1.0",
"@types/d3-force": "^3.0.9",
"d3-force": "^3.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions plugins/webui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cordisjs/plugin-webui",
"description": "Web User Interface for Koishi",
"version": "0.28.3",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
Expand Down Expand Up @@ -51,7 +51,7 @@
}
},
"peerDependencies": {
"@cordisjs/client": "^0.28.3",
"@cordisjs/client": "^0.1.0",
"cordis": "^3.14.0"
},
"peerDependenciesMeta": {
Expand All @@ -60,7 +60,7 @@
}
},
"devDependencies": {
"@cordisjs/client": "^0.28.3",
"@cordisjs/client": "^0.1.0",
"@cordisjs/loader": "^0.9.0",
"@cordisjs/plugin-server": "^0.2.1",
"@maikolib/vite-plugin-yaml": "^1.0.1",
Expand Down
9 changes: 9 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"rewrites": [{
"source": "/(.*)",
"destination": "/index.html"
}],
"github": {
"silent": true
}
}
13 changes: 13 additions & 0 deletions yakumo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
- name: yakumo
config:
pipeline:
build:
- tsc
- esbuild
- client
clean:
- tsc --clean
- name: yakumo-esbuild
- name: yakumo-mocha
- name: yakumo-tsc
- name: '@cordisjs/client/lib'

0 comments on commit 0990f20

Please sign in to comment.