link-stack/turbo.json

24 lines
472 B
JSON
Raw Normal View History

2023-02-13 13:46:56 +00:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
2023-02-13 20:04:35 +00:00
"dev": {
"cache": false,
"persistent": true
},
2023-02-13 13:46:56 +00:00
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
},
"lint": {},
2023-03-13 14:42:49 +00:00
"fix:lint": {},
2023-03-13 11:28:50 +00:00
"fmt": {},
2023-02-13 13:46:56 +00:00
"deploy": {
"dependsOn": ["build", "test", "lint"]
}
}
}