From 311a78fe5cc0492d24838ad254579be73bb03c10 Mon Sep 17 00:00:00 2001 From: sunlei Date: Fri, 26 Jun 2026 14:56:42 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0Admin=E6=8A=80?= =?UTF-8?q?=E8=83=BD=E5=91=BD=E4=BB=A4=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skills/SKILL.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/skills/SKILL.md b/skills/SKILL.md index f1bf522..eae8e89 100644 --- a/skills/SKILL.md +++ b/skills/SKILL.md @@ -15,7 +15,7 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框 ``` ├── apps/ # 应用目录 -│ ├── web-antd/ # Ant Design Vue 应用 +│ ├── web-antdv-next/ # 当前 Ant Design Vue Next 应用 │ ├── web-ele/ # Element Plus 应用 │ ├── web-naive/ # Naive UI 应用 │ └── backend-mock/ # Mock 后端服务 @@ -32,17 +32,19 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框 ```bash # 开发 -pnpm dev:antd # 启动 Ant Design 应用 +pnpm dev # 等价启动 web-antdv-next +pnpm dev:antdv-next # 启动当前 Ant Design Vue Next 应用 pnpm dev:ele # 启动 Element Plus 应用 pnpm dev:naive # 启动 Naive UI 应用 # 构建 pnpm build # 构建所有应用 -pnpm build:antd # 构建指定应用 +pnpm build:antdv-next # 构建当前应用 # 其他 pnpm lint # 代码检查 -pnpm check:type # 类型检查 +pnpm check:type # 全仓类型检查 +pnpm verify:commit # commit lint + web-antdv-next typecheck pnpm reinstall # 重新安装依赖 ```