59 lines
No EOL
969 B
JSON
59 lines
No EOL
969 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"inputs": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"test/**/*.tsx"
|
|
]
|
|
},
|
|
"lint": {
|
|
"inputs": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"test/**/*.tsx"
|
|
]
|
|
},
|
|
"fix:lint": {
|
|
"inputs": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"test/**/*.tsx"
|
|
]
|
|
},
|
|
"fmt": {
|
|
"inputs": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"test/**/*.tsx"
|
|
]
|
|
},
|
|
"deploy": {
|
|
"dependsOn": [
|
|
"build",
|
|
"test",
|
|
"lint"
|
|
]
|
|
}
|
|
}
|
|
} |