17 lines
370 B
JSON
17 lines
370 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
|
},
|
|
"lint": {},
|
|
"deploy": {
|
|
"dependsOn": ["build", "test", "lint"]
|
|
}
|
|
}
|
|
}
|