chore: remove unnecessary ts checks and enable parallel build (#7548)

#### What type of PR is this?

/area ui
/kind cleanup
/milestone 2.21.x

#### What this PR does / why we need it:

Remove unnecessary TS checks, and support parallel building of console and uc

#### Does this PR introduce a user-facing change?

```release-note
None
```
pull/7551/head
Ryan Wang 2025-06-13 15:54:42 +08:00 committed by GitHub
parent 8525f19a16
commit 3551e6cba7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@
"dev": "run-p dev:console dev:uc",
"dev:uc": "vite --host --config ./vite.uc.config.ts",
"dev:console": "vite --host --config ./vite.config.ts",
"build": "run-s build:console build:uc",
"build:uc": "vue-tsc --noEmit -p tsconfig.app.json --composite false && vite build --config ./vite.uc.config.ts",
"build:console": "vue-tsc --noEmit -p tsconfig.app.json --composite false && vite build --config ./vite.config.ts",
"build": "vue-tsc --noEmit -p tsconfig.app.json --composite false && run-p build:console build:uc",
"build:uc": "vite build --config ./vite.uc.config.ts",
"build:console": "vite build --config ./vite.config.ts",
"build:packages": "pnpm --filter \"./packages/**\" build",
"api-client:gen": "pnpm --filter \"./packages/api-client\" gen",
"test:unit": "vitest --environment jsdom --run && pnpm run test:unit:packages",