- Rewrite compile.ts from 112 to 66 lines: single target with auto-detect host, remove multi-target batch logic - Add compile:linux/mac/win scripts to server, root, and turbo configs - Wire desktop dist:* to depend on matching server compile:* (avoid unnecessary cross-platform compilation) - Update AGENTS.md docs across root, server, and desktop
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"dangerouslyDisablePackageManagerCheck": true,
|
|
"globalDependencies": ["bun.lock"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"compile": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"compile:linux": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"compile:mac": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"compile:win": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"dist": {},
|
|
"dist:linux": {},
|
|
"dist:mac": {},
|
|
"dist:win": {},
|
|
"@furtherverse/desktop#dist": {
|
|
"dependsOn": ["@furtherverse/server#compile"]
|
|
},
|
|
"@furtherverse/desktop#dist:linux": {
|
|
"dependsOn": ["@furtherverse/server#compile:linux"]
|
|
},
|
|
"@furtherverse/desktop#dist:mac": {
|
|
"dependsOn": ["@furtherverse/server#compile:mac"]
|
|
},
|
|
"@furtherverse/desktop#dist:win": {
|
|
"dependsOn": ["@furtherverse/server#compile:win"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"fix": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"inputs": [
|
|
"package.json",
|
|
"tsconfig.json",
|
|
"tsconfig.*.json",
|
|
"**/*.{ts,tsx,d.ts}"
|
|
],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|