fix: fixed some style issues (#4379)

This commit is contained in:
Vben
2024-09-12 22:03:58 +08:00
committed by GitHub
parent 537a4b0ecb
commit 76a879d4d8
27 changed files with 160 additions and 66 deletions

View File

@@ -55,15 +55,15 @@ The execution command is: `pnpm run [script]` or `npm run [script]`.
// Build a local Docker image
"build:docker": "./build-local-docker-image.sh",
// Build the web-antd application separately
"build:antd": "pnpm run build --filter=@vben/web-antd",
"build:antd": "pnpm -F @vben/web-antd run build",
// Build the documentation separately
"build:docs": "pnpm run build --filter=@vben/docs",
"build:docs": "pnpm -F @vben/docs run build",
// Build the web-ele application separately
"build:ele": "pnpm run build --filter=@vben/web-ele",
"build:ele": "pnpm -F @vben/web-ele run build",
// Build the web-naive application separately
"build:naive": "pnpm run build --filter=@vben/naive",
"build:naive": "pnpm -F @vben/web-naive run build",
// Build the playground application separately
"build:play": "pnpm run build --filter=@vben/playground",
"build:play": "pnpm -F @vben/playground run build",
// Changeset version management
"changeset": "pnpm exec changeset",
// Check for various issues in the project

View File

@@ -52,11 +52,11 @@ After slimming down, you may need to adjust commands according to your project.
```json
{
"scripts": {
"build:antd": "pnpm run build --filter=@vben/web-antd",
"build:docs": "pnpm run build --filter=@vben/docs",
"build:ele": "pnpm run build --filter=@vben/web-ele",
"build:naive": "pnpm run build --filter=@vben/web-naive",
"build:play": "pnpm run build --filter=@vben/playground",
"build:antd": "pnpm -F @vben/web-antd run build",
"build:docs": "pnpm -F @vben/docs run build",
"build:ele": "pnpm -F @vben/web-ele run build",
"build:naive": "pnpm -F @vben/web-naive run build",
"build:play": "pnpm -F @vben/playground run build",
"dev:antd": "pnpm -F @vben/web-antd run dev",
"dev:docs": "pnpm -F @vben/docs run dev",
"dev:ele": "pnpm -F @vben/web-ele run dev",

View File

@@ -55,15 +55,15 @@ npm 脚本是项目常见的配置,用于执行一些常见的任务,比如
// 构建本地 docker 镜像
"build:docker": "./build-local-docker-image.sh",
// 单独构建 web-antd 应用
"build:antd": "pnpm run build --filter=@vben/web-antd",
"build:antd": "pnpm -F @vben/web-antd run build",
// 单独构建文档
"build:docs": "pnpm run build --filter=@vben/docs",
"build:docs": "pnpm -F @vben/docs run build",
// 单独构建 web-ele 应用
"build:ele": "pnpm run build --filter=@vben/web-ele",
"build:ele": "pnpm -F @vben/web-ele run build",
// 单独构建 web-naive 应用
"build:naive": "pnpm run build --filter=@vben/naive",
"build:naive": "pnpm -F @vben/web-naive run build",
// 单独构建 playground 应用
"build:play": "pnpm run build --filter=@vben/playground",
"build:play": "pnpm -F @vben/playground run build",
// changeset 版本管理
"changeset": "pnpm exec changeset",
// 检查项目各种问题

View File

@@ -52,11 +52,11 @@ pnpm install
```json
{
"scripts": {
"build:antd": "pnpm run build --filter=@vben/web-antd",
"build:docs": "pnpm run build --filter=@vben/docs",
"build:ele": "pnpm run build --filter=@vben/web-ele",
"build:naive": "pnpm run build --filter=@vben/web-naive",
"build:play": "pnpm run build --filter=@vben/playground",
"build:antd": "pnpm -F @vben/web-antd run build",
"build:docs": "pnpm -F @vben/docs run build",
"build:ele": "pnpm -F @vben/web-ele run build",
"build:naive": "pnpm -F @vben/web-naive run build",
"build:play": "pnpm -F @vben/playground run build",
"dev:antd": "pnpm -F @vben/web-antd run dev",
"dev:docs": "pnpm -F @vben/docs run dev",
"dev:ele": "pnpm -F @vben/web-ele run dev",