mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
31 lines
589 B
JSON
31 lines
589 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"tscheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"build": {
|
|
"outputs": [".next/**", "public/**", "dist/**"],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"publishPackage": {
|
|
"dependsOn": ["^lint"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|