mirror of https://github.com/halo-dev/halo
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
parent
8525f19a16
commit
3551e6cba7
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue