2022-12-01 12:01:10 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
|
|
|
|
"pipeline": {
|
|
|
|
|
"build": {
|
2023-08-11 15:54:51 +02:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["dist/**"]
|
2022-12-01 12:01:10 +01:00
|
|
|
},
|
|
|
|
|
"lint": {
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"dev": {
|
|
|
|
|
"cache": false,
|
2023-08-11 15:54:51 +02:00
|
|
|
"dependsOn": ["^dev"]
|
2022-12-01 12:01:10 +01:00
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"outputs": [],
|
2023-08-11 15:54:51 +02:00
|
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
2022-12-01 12:01:10 +01:00
|
|
|
},
|
2023-06-30 10:52:34 +02:00
|
|
|
"test-ci": {
|
|
|
|
|
"outputs": [],
|
2023-08-11 15:54:51 +02:00
|
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
2023-06-30 10:52:34 +02:00
|
|
|
},
|
2022-12-01 12:01:10 +01:00
|
|
|
"deploy": {
|
2023-08-11 15:54:51 +02:00
|
|
|
"dependsOn": ["build", "test", "lint"],
|
2022-12-01 12:01:10 +01:00
|
|
|
"outputs": []
|
2023-01-04 15:49:37 +01:00
|
|
|
},
|
|
|
|
|
"@openfun/cunningham-tokens#test": {
|
|
|
|
|
"dependsOn": ["build"]
|
2022-12-01 12:01:10 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|