39 lines
683 B
JSON
39 lines
683 B
JSON
{
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "build/**"],
|
|
"inputs": [
|
|
"src/**",
|
|
"app/**",
|
|
"components/**",
|
|
"lib/**",
|
|
"*.py",
|
|
"*.ts",
|
|
"*.tsx",
|
|
"*.json"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "tests/**", "**/*.{py,ts,tsx}"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false,
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|