2025-10-23 09:54:45 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
|
|
|
|
"globalDependencies": ["**/.env.*local"],
|
|
|
|
|
"tasks": {
|
|
|
|
|
"build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
2025-10-23 19:05:49 +00:00
|
|
|
"inputs": [
|
|
|
|
|
"src/**",
|
|
|
|
|
"tsconfig.json",
|
|
|
|
|
"tsconfig.*.json",
|
|
|
|
|
"vite.config.ts",
|
|
|
|
|
"package.json"
|
|
|
|
|
],
|
|
|
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "tsconfig.tsbuildinfo"],
|
|
|
|
|
"outputLogs": "new-only"
|
2025-10-23 09:54:45 +00:00
|
|
|
},
|
|
|
|
|
"dev": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
|
|
|
|
},
|
|
|
|
|
"lint": {
|
2025-10-23 19:05:49 +00:00
|
|
|
"inputs": ["src/**", "biome.json", "package.json"],
|
|
|
|
|
"outputLogs": "new-only"
|
2025-10-23 09:54:45 +00:00
|
|
|
},
|
2025-10-23 21:27:13 +00:00
|
|
|
"lint:fix": {
|
|
|
|
|
"inputs": ["src/**", "biome.json", "package.json"],
|
|
|
|
|
"outputLogs": "new-only"
|
|
|
|
|
},
|
2025-10-23 19:05:49 +00:00
|
|
|
"format": {
|
|
|
|
|
"inputs": ["src/**", "biome.json", "package.json"],
|
|
|
|
|
"outputLogs": "errors-only"
|
|
|
|
|
},
|
|
|
|
|
"typecheck": {
|
|
|
|
|
"inputs": ["src/**", "tsconfig.json", "tsconfig.*.json", "package.json"],
|
|
|
|
|
"outputLogs": "new-only"
|
2025-10-23 09:54:45 +00:00
|
|
|
},
|
|
|
|
|
"test": {
|
2025-10-23 19:05:49 +00:00
|
|
|
"inputs": ["src/**", "**/*.test.ts", "**/*.test.tsx", "vitest.config.ts", "package.json"],
|
|
|
|
|
"outputs": ["coverage/**"],
|
|
|
|
|
"outputLogs": "new-only"
|
|
|
|
|
},
|
|
|
|
|
"test:watch": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
2025-10-23 09:54:45 +00:00
|
|
|
},
|
2026-04-15 15:19:13 +00:00
|
|
|
"deploy": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"deploy:staging": {
|
|
|
|
|
"dependsOn": ["build:staging"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"deploy:prod": {
|
|
|
|
|
"dependsOn": ["build:prod"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"build:staging": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["dist/**"],
|
|
|
|
|
"outputLogs": "new-only"
|
|
|
|
|
},
|
|
|
|
|
"build:prod": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["dist/**"],
|
|
|
|
|
"outputLogs": "new-only"
|
|
|
|
|
},
|
2025-10-23 09:54:45 +00:00
|
|
|
"clean": {
|
|
|
|
|
"cache": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|