forked from imbytecat/fullstack-starter
refactor: 重构任务配置并移除无效ui配置项
- 移除 ui 配置项并重新排序任务配置以确保持久化和缓存设置正确应用。
This commit is contained in:
10
turbo.json
10
turbo.json
@@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/turbo/schema.json",
|
"$schema": "./node_modules/turbo/schema.json",
|
||||||
"ui": "tui",
|
|
||||||
"dangerouslyDisablePackageManagerCheck": true,
|
"dangerouslyDisablePackageManagerCheck": true,
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"build:compile": {
|
"build:compile": {
|
||||||
@@ -10,14 +9,15 @@
|
|||||||
"dependsOn": ["build:compile"]
|
"dependsOn": ["build:compile"]
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"persistent": true,
|
"cache": false,
|
||||||
"cache": false
|
"persistent": true
|
||||||
},
|
},
|
||||||
"dev:tauri": {
|
"dev:tauri": {
|
||||||
"persistent": true,
|
|
||||||
"cache": false,
|
"cache": false,
|
||||||
"dependsOn": ["build:compile"],
|
"dependsOn": ["build:compile"],
|
||||||
|
"persistent": true,
|
||||||
"with": ["dev:vite"]
|
"with": ["dev:vite"]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"ui": "tui"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user