Skip to content

Commit f0a4bcb

Browse files
committed
fix: use yakumo when building and add lock file
1 parent 048520a commit f0a4bcb

File tree

5 files changed

+9482
-7
lines changed

5 files changed

+9482
-7
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,10 @@ tsconfig.cjs.tsbuildinfo
1717
*.ntvs*
1818
*.njsproj
1919
*.sln
20+
21+
.yarn/*
22+
!.yarn/patches
23+
!.yarn/releases
24+
!.yarn/plugins
25+
!.yarn/sdks
26+
!.yarn/versions

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@
3333
"Shigma <shigma10826@gmail.com>"
3434
],
3535
"scripts": {
36-
"build": "tsc -b && tsc -p tsconfig.cjs.json && koishi-console build",
36+
"build": "yakumo build && koishi-console build",
37+
"bump": "yakumo version",
38+
"dep": "yakumo upgrade",
39+
"pub": "yakumo publish",
3740
"lint": "eslint . --quiet",
3841
"docs:dev": "vitepress dev docs --open",
3942
"docs:build": "vitepress build docs",
@@ -91,6 +94,14 @@
9194
"koishi": "^4.18.7",
9295
"typescript": "^5.9.0-dev.20250403",
9396
"vitepress": "^1.6.3",
97+
"yakumo": "^1.0.0",
98+
"yakumo-esbuild": "^1.0.0",
99+
"yakumo-esbuild-yaml": "^0.3.1",
100+
"yakumo-publish": "^0.3.10",
101+
"yakumo-publish-sync": "^1.0.0-alpha.1",
102+
"yakumo-tsc": "^1.0.0",
103+
"yakumo-upgrade": "^0.3.6",
104+
"yakumo-version": "^0.3.4",
94105
"yml-register": "^1.2.5"
95106
},
96107
"dependencies": {

tsconfig.cjs.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

yakumo.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
- name: yakumo
2+
config:
3+
pipeline:
4+
build:
5+
- tsc
6+
- esbuild
7+
- name: yakumo-esbuild
8+
- name: yakumo-tsc
9+
- name: yakumo/run
10+
- name: yakumo-publish-sync
11+
- name: yakumo/publish
12+
- name: yakumo/prepare
13+
- name: yakumo/upgrade

0 commit comments

Comments
 (0)