Add build script for plugin-builtin package

Introduces a new npm script 'build:plugin-builtin' to build the napcat-plugin-builtin package using pnpm.
This commit is contained in:
手瓜一十雪 2026-01-22 14:51:21 +08:00
parent d0519feb4f
commit 8197ebcbcf

View File

@ -8,6 +8,7 @@
"build:shell:dev": "pnpm --filter napcat-shell run build:dev || exit 1", "build:shell:dev": "pnpm --filter napcat-shell run build:dev || exit 1",
"build:framework": "pnpm --filter napcat-framework run build || exit 1", "build:framework": "pnpm --filter napcat-framework run build || exit 1",
"build:webui": "pnpm --filter napcat-webui-frontend run build || exit 1", "build:webui": "pnpm --filter napcat-webui-frontend run build || exit 1",
"build:plugin-builtin": "pnpm --filter napcat-plugin-builtin run build || exit 1",
"dev:shell": "pnpm --filter napcat-develop run dev || exit 1", "dev:shell": "pnpm --filter napcat-develop run dev || exit 1",
"typecheck": "pnpm -r --if-present run typecheck", "typecheck": "pnpm -r --if-present run typecheck",
"test": "pnpm --filter napcat-test run test", "test": "pnpm --filter napcat-test run test",