amical/turbo.json
Haritabh 9787240896
vite.build.fixes (#12)
* 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
2025-05-25 16:33:39 +05:30

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
}
}
}