Prettier had some missing extensions in the config, this commit added them, we then prettified the whole project. We ignore the `cunningham-tokens` files.
32 lines
679 B
JSON
32 lines
679 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"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": {
|
|
"outputs": [],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
|
},
|
|
"deploy": {
|
|
"dependsOn": ["build", "test", "lint"],
|
|
"outputs": []
|
|
},
|
|
"@openfun/cunningham-tokens#test": {
|
|
"dependsOn": ["build"]
|
|
}
|
|
}
|
|
}
|