Skip to content

Commit 116bbd9

Browse files
committed
chore: fix missing build
1 parent a5957e8 commit 116bbd9

5 files changed

Lines changed: 20 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ jobs:
7575
run: |-
7676
yarn config set npmPublishProvenance true
7777
yarn config set npmRegistryServer https://registry.npmjs.org/
78-
yarn pub --debug
78+
yarn yakumo publish --debug

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"license": "MIT",
1212
"scripts": {
13-
"build": "tsc -b",
13+
"build": "yarn yakumo build",
1414
"bump": "yarn yakumo version",
1515
"dep": "yarn yakumo upgrade",
1616
"pub": "yarn yakumo publish",
@@ -32,5 +32,8 @@
3232
"yakumo-esbuild": "^1.0.0-beta.7",
3333
"yakumo-mocha": "^1.0.0-beta.2",
3434
"yakumo-tsc": "^1.0.0-beta.5"
35+
},
36+
"resolutions": {
37+
"@types/koa__router/@types/koa": "^2"
3538
}
3639
}

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cordisjs/plugin-server",
33
"description": "Server plugin for cordis",
4-
"version": "0.2.8",
4+
"version": "0.2.9",
55
"type": "module",
66
"main": "lib/index.cjs",
77
"module": "lib/index.mjs",
@@ -49,7 +49,7 @@
4949
"dependencies": {
5050
"@koa/router": "^10.1.1",
5151
"@types/koa": "^2",
52-
"@types/koa__router": "^12",
52+
"@types/koa__router": "^8",
5353
"@types/ws": "^8.5.10",
5454
"cosmokit": "^1.8.1",
5555
"koa": "^2.15.2",

packages/proxy/package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,15 @@
2727
"server",
2828
"service",
2929
"plugin"
30-
]
30+
],
31+
"peerDependencies": {
32+
"cordis": "^3.18.1"
33+
},
34+
"devDependencies": {
35+
"cordis": "^3.18.1"
36+
},
37+
"dependencies": {
38+
"cosmokit": "^1.8.1",
39+
"schemastery": "^3.17.2"
40+
}
3141
}

packages/temp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
],
3131
"devDependencies": {
3232
"@cordisjs/plugin-http": "^0.6.3",
33-
"@cordisjs/plugin-server": "^0.2.8",
33+
"@cordisjs/plugin-server": "^0.2.9",
3434
"cordis": "^3.18.1"
3535
},
3636
"peerDependencies": {
37-
"@cordisjs/plugin-server": "^0.2.8",
37+
"@cordisjs/plugin-server": "^0.2.9",
3838
"cordis": "^3.18.1"
3939
},
4040
"dependencies": {

0 commit comments

Comments
 (0)