docs: 更新Admin技能命令命名

This commit is contained in:
sunlei 2026-06-26 14:56:42 +08:00
parent 9c0720f183
commit 311a78fe5c

View File

@ -15,7 +15,7 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框
``` ```
├── apps/ # 应用目录 ├── apps/ # 应用目录
│ ├── web-antd/ # Ant Design Vue 应用 │ ├── web-antdv-next/ # 当前 Ant Design Vue Next 应用
│ ├── web-ele/ # Element Plus 应用 │ ├── web-ele/ # Element Plus 应用
│ ├── web-naive/ # Naive UI 应用 │ ├── web-naive/ # Naive UI 应用
│ └── backend-mock/ # Mock 后端服务 │ └── backend-mock/ # Mock 后端服务
@ -32,17 +32,19 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框
```bash ```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:ele # 启动 Element Plus 应用
pnpm dev:naive # 启动 Naive UI 应用 pnpm dev:naive # 启动 Naive UI 应用
# 构建 # 构建
pnpm build # 构建所有应用 pnpm build # 构建所有应用
pnpm build:antd # 构建指定应用 pnpm build:antdv-next # 构建当前应用
# 其他 # 其他
pnpm lint # 代码检查 pnpm lint # 代码检查
pnpm check:type # 类型检查 pnpm check:type # 全仓类型检查
pnpm verify:commit # commit lint + web-antdv-next typecheck
pnpm reinstall # 重新安装依赖 pnpm reinstall # 重新安装依赖
``` ```