da2a7391da
- 移除构建和开发脚本中的冗余bun run命令,直接调用tauri命令 - 在开发配置中添加对复制任务的依赖并指定输出路径,确保构建产物正确复制。
15 lines
342 B
JSON
15 lines
342 B
JSON
{
|
|
"$schema": "../../node_modules/turbo/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["@furtherverse/server#compile"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["@furtherverse/server#compile", "copy"],
|
|
"outputs": ["src-tauri/target/release/**"],
|
|
"with": ["@furtherverse/server#dev"]
|
|
}
|
|
}
|
|
}
|