Files
cunningham/turbo.json

57 lines
902 B
JSON
Raw Permalink Normal View History

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"dependsOn": [
"^dev"
]
},
"test": {
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"test-ci": {
"env": [
"CIRCLE_*"
],
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"deploy": {
"dependsOn": [
"build",
"test",
"lint"
],
"outputs": []
},
"@gouvfr-lasuite/cunningham-tokens#test": {
"dependsOn": [
"build"
]
}
}
}