link-stack/turbo.json

31 lines
802 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": {
"dependsOn": ["^build"],
2023-02-13 20:04:35 +00:00
"cache": false,
"persistent": true
},
2023-02-13 13:46:56 +00:00
"build": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["^build"],
"outputs": [".next/**","!.next/cache/**", "build/**", "dist/**"]
2023-02-13 13:46:56 +00:00
},
"test": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-03-13 16:40:04 +00:00
},
"lint": {
2023-05-25 12:37:14 +00:00
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-03-13 16:40:04 +00:00
},
"fix:lint": {
2023-05-25 12:37:14 +00:00
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-03-13 16:40:04 +00:00
},
"fmt": {
2023-05-25 12:37:14 +00:00
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-02-13 13:46:56 +00:00
},
"deploy": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["build", "test", "lint"]
2023-02-13 13:46:56 +00:00
}
}
2023-05-25 12:37:14 +00:00
}