* chore: add swift helper * chore: separate out types into types pkg * chore: only build apps/www for now * chore: don't build swift helper as part of pnpm i * chore: fix system audio mute and restore + resources embedding * chore: resolve merge conflicts
28 lines
643 B
JSON
28 lines
643 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "bin/**", "out/**"]
|
|
},
|
|
"build:native": {
|
|
"dependsOn": [],
|
|
"inputs": ["Sources/**", "Package.swift", "main.swift", "scripts/**"],
|
|
"outputs": ["bin/**"],
|
|
"cache": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|